From f3b0c423a60f82b13fffeec73fa1a77bf75cd4dc Mon Sep 17 00:00:00 2001 From: Michael Wayne Goodman Date: Thu, 1 Sep 2022 09:08:22 -0700 Subject: [PATCH] Bump version to 1.2.2, add CHANGELOG entries --- CHANGELOG.md | 12 ++++++++++++ penman/__about__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68bab07..127193c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** @@ -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 @@ -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 diff --git a/penman/__about__.py b/penman/__about__.py index fefa54a..3e14467 100644 --- a/penman/__about__.py +++ b/penman/__about__.py @@ -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()