diff --git a/CHANGELOG.md b/CHANGELOG.md index 31b5723..b2c979b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added -- Oxygen (O2) is available as a substance -- Nitrogen (N2) is available as a substance ### Changed ### Fixed -- Deploy doctr to the root directory (see [drdoctr/doctr#157](https://github.com/drdoctr/doctr/issues/157) and [drdoctr/doctr#160](https://github.com/drdoctr/doctr/issues/160)) ### Removed +## [0.2.2] - 13-APR-2017 +### Added +- Oxygen (O2) is available as a substance +- Nitrogen (N2) is available as a substance + +### Fixed +- Deploy doctr to the root directory (see [drdoctr/doctr#157](https://github.com/drdoctr/doctr/issues/157) and [drdoctr/doctr#160](https://github.com/drdoctr/doctr/issues/160)) + ## [0.2.1] ### Added - Carbon dioxide is available as a substance @@ -76,7 +81,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - First Release -[Unreleased]: https://github.com/bryanwweber/thermostate/compare/v0.2.1...master +[Unreleased]: https://github.com/bryanwweber/thermostate/compare/v0.2.2...master +[0.2.2]: https://github.com/bryanwweber/thermostate/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/bryanwweber/thermostate/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/bryanwweber/thermostate/compare/v0.1.7...v0.2.0 [0.1.7]: https://github.com/bryanwweber/thermostate/compare/v0.1.6...v0.1.7 diff --git a/thermostate/_version.py b/thermostate/_version.py index b004a6b..0a70add 100644 --- a/thermostate/_version.py +++ b/thermostate/_version.py @@ -1,4 +1,4 @@ -__version_info__ = ('0', '2', '1', '') +__version_info__ = ('0', '2', '2', '') __version__ = '.'.join(__version_info__[:3]) if len(__version_info__) == 4: __version__ += __version_info__[-1]