diff --git a/LICENSE.txt b/LICENSE.txt index 491ef77..e98de42 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright © 2006-2018 Alice Bevan-McGregor and contributors. +Copyright © 2006-2019 Alice Bevan-McGregor and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.rst b/README.rst index 03d9070..89d074d 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ cinje ===== - © 2015-2017 Alice Bevan-McGregor and contributors. + © 2015-2019 Alice Bevan-McGregor and contributors. .. @@ -580,6 +580,15 @@ Just like with ``using``, the result of the expression must be a callable genera Version History =============== +Version 1.1.2 +------------- + +* *Fixed* `Python 3.7 exception use within generators. `_ + +* *Added* Genshi to the `benchmark comparison suite `_. + +* *Fixed* minor docstring typo. + Version 1.1.1 ------------- @@ -628,7 +637,7 @@ cinje has been released under the MIT Open Source license. The MIT License --------------- -Copyright © 2015-2017 Alice Bevan-McGregor and contributors. +Copyright © 2015-2019 Alice Bevan-McGregor and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the @@ -643,6 +652,7 @@ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + .. |ghwatch| image:: https://img.shields.io/github/watchers/marrow/cinje.svg?style=social&label=Watch :target: https://github.com/marrow/cinje/subscription :alt: Subscribe to project activity on Github. @@ -683,12 +693,12 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR :target: https://github.com/marrow/cinje/issues :alt: Github Issues -.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/cinje/1.1.1.svg +.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/cinje/1.1.2.svg :target: https://github.com/marrow/cinje/commits/develop :alt: Changes since last release. .. |ghtag| image:: https://img.shields.io/github/tag/marrow/cinje.svg - :target: https://github.com/marrow/cinje/tree/1.1.1 + :target: https://github.com/marrow/cinje/tree/1.1.2 :alt: Latest Github tagged release. .. |latestversion| image:: http://img.shields.io/pypi/v/cinje.svg?style=flat diff --git a/cinje/release.py b/cinje/release.py index bd9447e..0b65236 100644 --- a/cinje/release.py +++ b/cinje/release.py @@ -5,7 +5,7 @@ from collections import namedtuple -version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 1, 'final', 0) +version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 2, 'final', 0) version = ".".join([str(i) for i in version_info[:3]]) + ((version_info.releaselevel[0] + str(version_info.serial)) if version_info.releaselevel != 'final' else '') author = namedtuple('Author', ['name', 'email'])("Alice Bevan-McGregor", 'alice@gothcandy.com')