Skip to content

Commit

Permalink
💎 Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Apr 12, 2020
1 parent 6e62ddd commit c2c33f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

<!-- markdownlint-disable MD022 MD032 MD024 -->

## [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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thermostate/_version.py
Original file line number Diff line number Diff line change
@@ -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)])

0 comments on commit c2c33f8

Please sign in to comment.