From 3261befebf3ac50dcb84a29a3a975c12eb946683 Mon Sep 17 00:00:00 2001 From: Kyle Niemeyer Date: Sat, 2 Sep 2017 10:52:04 +0100 Subject: [PATCH] :gem: bump version 0.2.2 --- CHANGELOG.md | 11 ++++++++++- pyteck/_version.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fe96da..c87bbca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added + +### Fixed + +### Changed + + +## [0.2.2] - 2017-09-02 +### Added - Adds DOI badge to README and CITATION - Adds AppVeyor build status badge to README - Adds restart option to skip existing results files. @@ -39,7 +47,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - First published version of PyTeCK. - Supports validation using both shock tube and RCM experimental data in ChemKED format, but RCM not fully functional. - [Unreleased]: https://github.com/kyleniemeyer/PyTeCK/compare/v0.2.1...HEAD + [Unreleased]: https://github.com/kyleniemeyer/PyTeCK/compare/v0.2.2...HEAD + [0.2.2]: https://github.com/kyleniemeyer/PyTeCK/compare/v0.2.1...0.2.2 [0.2.1]: https://github.com/kyleniemeyer/PyTeCK/compare/v0.2.0...0.2.1 [0.2.0]: https://github.com/kyleniemeyer/PyTeCK/compare/v0.1...0.2.0 [0.1.0]: https://github.com/kyleniemeyer/PyTeCK/compare/e99f757b7ea644065a0ee65ce86dbfb8f404be60...v0.1 diff --git a/pyteck/_version.py b/pyteck/_version.py index 0f4c5a0..0c3328b 100644 --- a/pyteck/_version.py +++ b/pyteck/_version.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 2, 2, 'a6') +__version_info__ = (0, 2, 2, '') __version__ = '.'.join(map(str, __version_info__[:3])) if len(__version_info__) == 4: __version__ += __version_info__[-1]