Skip to content

Commit c198a30

Browse files
committed
Version and copyright bump, release notes.
1 parent 16fdba9 commit c198a30

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2006-2018 Alice Bevan-McGregor and contributors.
1+
Copyright © 2006-2019 Alice Bevan-McGregor and contributors.
22

33
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:
44

README.rst

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cinje
33
=====
44

5-
© 2015-2017 Alice Bevan-McGregor and contributors.
5+
© 2015-2019 Alice Bevan-McGregor and contributors.
66

77
..
88
@@ -580,6 +580,15 @@ Just like with ``using``, the result of the expression must be a callable genera
580580
Version History
581581
===============
582582

583+
Version 1.1.2
584+
-------------
585+
586+
* *Fixed* `Python 3.7 exception use within generators. <https://github.com/marrow/cinje/issues/28>`_
587+
588+
* *Added* Genshi to the `benchmark comparison suite <https://github.com/marrow/cinje/wiki/Benchmarks#python-37>`_.
589+
590+
* *Fixed* minor docstring typo.
591+
583592
Version 1.1.1
584593
-------------
585594

@@ -628,7 +637,7 @@ cinje has been released under the MIT Open Source license.
628637
The MIT License
629638
---------------
630639

631-
Copyright © 2015-2017 Alice Bevan-McGregor and contributors.
640+
Copyright © 2015-2019 Alice Bevan-McGregor and contributors.
632641

633642
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
634643
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
643652
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
644653
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
645654

655+
646656
.. |ghwatch| image:: https://img.shields.io/github/watchers/marrow/cinje.svg?style=social&label=Watch
647657
:target: https://github.com/marrow/cinje/subscription
648658
: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
683693
:target: https://github.com/marrow/cinje/issues
684694
:alt: Github Issues
685695

686-
.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/cinje/1.1.1.svg
696+
.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/cinje/1.1.2.svg
687697
:target: https://github.com/marrow/cinje/commits/develop
688698
:alt: Changes since last release.
689699

690700
.. |ghtag| image:: https://img.shields.io/github/tag/marrow/cinje.svg
691-
:target: https://github.com/marrow/cinje/tree/1.1.1
701+
:target: https://github.com/marrow/cinje/tree/1.1.2
692702
:alt: Latest Github tagged release.
693703

694704
.. |latestversion| image:: http://img.shields.io/pypi/v/cinje.svg?style=flat

cinje/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from collections import namedtuple
66

77

8-
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 1, 'final', 0)
8+
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 2, 'final', 0)
99
version = ".".join([str(i) for i in version_info[:3]]) + ((version_info.releaselevel[0] + str(version_info.serial)) if version_info.releaselevel != 'final' else '')
1010

1111
author = namedtuple('Author', ['name', 'email'])("Alice Bevan-McGregor", '[email protected]')

0 commit comments

Comments
 (0)