Skip to content

Commit

Permalink
💎 Release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Jul 17, 2017
1 parent 21dad09 commit 49e27f8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added

### Fixed

### Changed

## [0.1.6] - 2017-07-17
### Added
- Added logo files to repo
- Added `first_stage_ignition_delay`, `compressed_pressure`, and `compressed_temperature` as properties

Expand Down Expand Up @@ -61,7 +68,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- First minor release of PyKED, supporting autoignition experiments.
- Basic API documentation is available via https://pr-omethe-us.github.io/PyKED/

[Unreleased]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.5...HEAD
[Unreleased]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.6...HEAD
[0.1.6]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.5...v0.1.6
[0.1.5]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.4...v0.1.5
[0.1.4]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.2...v0.1.3
Expand Down
4 changes: 2 additions & 2 deletions CITATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

To cite PyKED in a scholarly article, please use

> K. E. Niemeyer and B. W. Weber. (2017) PyKED v0.1.5 [software]. Zenodo. https://doi.org/10.5281/zenodo.597935
> K. E. Niemeyer and B. W. Weber. (2017) PyKED v0.1.6 [software]. Zenodo. https://doi.org/10.5281/zenodo.597935
A BibTeX entry for LaTeX users is

```TeX
@misc{PyKED,
author = {Kyle E Niemeyer and Bryan W Weber},
year = 2017,
title = {PyKED v0.1.5},
title = {PyKED v0.1.6},
doi = {10.5281/zenodo.597935},
url = {https://github.com/pr-omethe-us/PyKED},
}
Expand Down
2 changes: 1 addition & 1 deletion pyked/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 1, 5, '')
__version_info__ = (0, 1, 6, '')
__version__ = '.'.join(map(str, __version_info__[:3]))
if len(__version_info__) == 4:
__version__ += __version_info__[-1]
1 change: 1 addition & 0 deletions pyked/schemas/chemked_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ chemked-version: # TODO: Implement proper version comparison
- 0.1.3
- 0.1.4
- 0.1.5
- 0.1.6
required: true
type: string
experiment-type:
Expand Down

0 comments on commit 49e27f8

Please sign in to comment.