diff --git a/CHANGELOG.md b/CHANGELOG.md index ad749c2..6f66dff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p -## [Unreleased] +## [1.1.0] - 12-APR-2020 ### Added - Build CoolProp and run the tests on Python 3.8 - Set up the Matplotlib functionality built into Pint. This bumps the minimum Pint version to 0.9 and adds Matplotlib as a dependency @@ -17,8 +17,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed - The Rankine cycle example had a dimensionality error due to better NumPy support in Pint. Fixes #24. -### Removed - ## [1.0.0] - 03-MAR-2020 ### Added - Switch to ReadTheDocs for documentation website @@ -200,7 +198,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Added - First Release -[Unreleased]: https://github.com/bryanwweber/thermostate/compare/v1.0.0...HEAD +[1.1.0]: https://github.com/bryanwweber/thermostate/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/bryanwweber/thermostate/compare/v0.5.3...v1.0.0 [0.5.3]: https://github.com/bryanwweber/thermostate/compare/v0.5.2...v0.5.3 [0.5.2]: https://github.com/bryanwweber/thermostate/compare/v0.5.1...v0.5.2 diff --git a/src/thermostate/_version.py b/src/thermostate/_version.py index 7ee7b52..8e8d547 100644 --- a/src/thermostate/_version.py +++ b/src/thermostate/_version.py @@ -1,5 +1,5 @@ """The version of ThermoState.""" from typing import Tuple -__version_info__ = (1, 0, 1, "dev0") # type: Tuple[int, int, int, str] +__version_info__ = (1, 1, 0, "") # type: Tuple[int, int, int, str] __version__ = ".".join([str(v) for v in __version_info__ if str(v)])