Skip to content

Commit

Permalink
💎 v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleniemeyer committed Sep 6, 2019
1 parent 9c5716a commit b568baa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed

## [1.1.0] - 2019-09-06

### Added

- Added checks to ensure any species in inputs are in the starting model
- Added ability to specify `ideal_gas` object name for reduction, if model in model file

Expand Down Expand Up @@ -57,6 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).


[Unreleased]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v1.1.0...HEAD
[1.0.1]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v1.1.0...v1.0.1
[1.1.0]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v0.1.0...v1.0.0
[0.1.0]: https://github.com/Niemeyer-Research-Group/pyMARS/compare/v0.0.1...v0.1.0
2 changes: 1 addition & 1 deletion pymars/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (1, 1, 0, 'a8')
__version_info__ = (1, 1, 0, '')
__version__ = '.'.join(map(str, __version_info__[:3]))
if len(__version_info__) == 4:
__version__ += __version_info__[-1]

0 comments on commit b568baa

Please sign in to comment.