From 435479883aefe01efea2150283e80764f9e28cb1 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Tue, 23 Oct 2018 15:38:05 -0400 Subject: [PATCH] :gem: Release v0.5.0! --- CHANGELOG.md | 4 ++-- thermostate/_version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 128189c..d5cc63e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [0.5.0] - 23-OCT-2018 ### Added - Add JOSE paper - Add installation, documentation, code of conduct, and contributing links to README @@ -138,7 +138,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - First Release -[Unreleased]: https://github.com/bryanwweber/thermostate/compare/v0.4.2...HEAD +[0.5.0]: https://github.com/bryanwweber/thermostate/compare/v0.4.2...v0.5.0 [0.4.2]: https://github.com/bryanwweber/thermostate/compare/v0.4.1...v0.4.2 [0.4.1]: https://github.com/bryanwweber/thermostate/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/bryanwweber/thermostate/compare/v0.3.0...v0.4.0 diff --git a/thermostate/_version.py b/thermostate/_version.py index a978fd9..7bf5a83 100644 --- a/thermostate/_version.py +++ b/thermostate/_version.py @@ -1,4 +1,4 @@ """The version of thermohw.""" -__version_info__ = (0, 4, 3, 'dev0') # type: Tuple[int, int, int, str] +__version_info__ = (0, 5, 0, '') # type: Tuple[int, int, int, str] __version__ = '.'.join([str(v) for v in __version_info__ if str(v)])