Skip to content

Commit

Permalink
💎 Release 0.4.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Sep 21, 2018
1 parent 0eb73b7 commit bcf9e9f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.4.0] - 21-SEP-2018
### Added=
- `_render_traceback_` function added to `StateError` to improve formatting of the traceback in IPython and Jupyter
- Add several examples demonstrating the use of ThermoState
Expand Down Expand Up @@ -107,7 +107,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- First Release

[Unreleased]: https://github.com/bryanwweber/thermostate/compare/v0.3.0...master
[0.4.0]: https://github.com/bryanwweber/thermostate/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/bryanwweber/thermostate/compare/v0.2.4...v0.3.0
[0.2.4]: https://github.com/bryanwweber/thermostate/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/bryanwweber/thermostate/compare/v0.2.2...v0.2.3
Expand Down
9 changes: 5 additions & 4 deletions thermostate/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
__version_info__ = ('0', '3', '0', '')
__version__ = '.'.join(__version_info__[:3])
if len(__version_info__) == 4:
__version__ += __version_info__[-1]
"""The version of thermohw."""
from typing import Tuple

__version_info__: Tuple[int, int, int, str] = (0, 4, 0, '')
__version__ = '.'.join([str(v) for v in __version_info__ if str(v)])

0 comments on commit bcf9e9f

Please sign in to comment.