Skip to content

Commit b928807

Browse files
committed
Merge branch 'release-0.9.1'
2 parents fde258a + c66aa16 commit b928807

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ Change Log
55
All notable changes to this project will be documented in this file.
66
This project adheres to `Semantic Versioning <http://semver.org/>`_.
77

8+
0.9.1
9+
*****
10+
11+
Fixed
12+
-----
13+
14+
* Removed stray log statement
15+
816
0.9.0
917
*****
1018

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = u'0.9.0'
59+
version = u'0.9.1'
6060
# The full version, including alpha/beta/rc tags.
61-
release = u'0.9.0'
61+
release = u'0.9.1'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='ymmsl',
11-
version='0.9.0',
11+
version='0.9.1',
1212
description="Python bindings for the YAML version of the Multiscale Modeling and Simulation Language",
1313
long_description=readme + '\n\n',
1414
author="Lourens Veen",

ymmsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
as well as to read and write yMMSL files.
1616
"""
1717

18-
__version__ = '0.9.0'
18+
__version__ = '0.9.1'
1919
__author__ = 'Lourens Veen'
2020
__email__ = '[email protected]'
2121

ymmsl/identity.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""This module contains definitions for identity."""
22
from copy import copy
3-
import logging
43
import re
54
from collections import OrderedDict, UserString
65
from typing import Any, Generator, Iterable, List, Union, overload
@@ -26,7 +25,6 @@ def __init__(self, seq: Any) -> None:
2625
not form a valid Identifier.
2726
"""
2827
super().__init__(seq)
29-
logging.debug('Identifier from {}'.format(seq))
3028
if not re.fullmatch(
3129
r'[a-zA-Z_]\w*', self.data, flags=re.ASCII):
3230
raise ValueError('Identifiers must consist only of'

0 commit comments

Comments
 (0)