Skip to content

Commit

Permalink
Bump version to 1.2.2, add CHANGELOG entries
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Sep 1, 2022
1 parent d6432fe commit f3b0c42
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v1.2.2]

**Release date: 2022-09-01**

### Added

* `--encoding` option for the `penman` command ([#109])
* `encoding` parameter on `penman.load` and `penman.dump` ([#109])


## [v1.2.1]

**Release date: 2021-09-13**
Expand Down Expand Up @@ -740,6 +750,7 @@ First release with very basic functionality.
[v1.1.1]: ../../releases/tag/v1.1.1
[v1.2.0]: ../../releases/tag/v1.2.0
[v1.2.1]: ../../releases/tag/v1.2.1
[v1.2.2]: ../../releases/tag/v1.2.2
[README]: README.md

[#4]: https://github.com/goodmami/penman/issues/4
Expand Down Expand Up @@ -805,3 +816,4 @@ First release with very basic functionality.
[#93]: https://github.com/goodmami/penman/issues/93
[#95]: https://github.com/goodmami/penman/issues/95
[#99]: https://github.com/goodmami/penman/issues/99
[#109]: https://github.com/goodmami/penman/issues/109
2 changes: 1 addition & 1 deletion penman/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.2.1'
__version__ = '1.2.2'
__version_info__ = tuple(
int(x) if x.isdigit() else x
for x in __version__.replace('.', ' ').replace('-', ' ').split()
Expand Down

0 comments on commit f3b0c42

Please sign in to comment.