Skip to content

Commit

Permalink
💎 Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Mar 7, 2018
1 parent c3b33dd commit 1bcab5e
Show file tree
Hide file tree
Showing 4 changed files with 14 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

### Changed

### Fixed

## [0.4.0] - 2018-04-07
### Added
- New method to instantiate a `ChemKED` class directly from a ReSpecTh XML file
- The `__version__` attribute can be imported from the top-level module
- New `time-histories` field to replace the `volume-history`. This field allows specification of several other relevant parameters besides volume.
Expand Down Expand Up @@ -119,7 +126,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.3.0...HEAD
[Unreleased]: https://github.com/pr-omethe-us/PyKED/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/pr-omethe-us/PyKED/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/pr-omethe-us/PyKED/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/pr-omethe-us/PyKED/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/pr-omethe-us/PyKED/compare/v0.1.6...v0.2.0
Expand Down
5 changes: 3 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.3.0 [software]. Zenodo. https://doi.org/10.5281/zenodo.597935
> K. E. Niemeyer and B. W. Weber. (2018) PyKED v0.4.0 [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.3.0},
title = {PyKED v0.4.0},
doi = {10.5281/zenodo.597935},
url = {https://github.com/pr-omethe-us/PyKED},
}
Expand All @@ -23,6 +23,7 @@ given in the badge at the top, or alternately <https://doi.org/10.5281/zenodo.59
take you to the latest version (and generally represents all versions).
If you would like to cite a specific, older version, the DOIs for each release are:

* v0.3.0: [10.5281/zenodo.1006722](https://doi.org/10.5281/zenodo.1006722)
* v0.2.1: [10.5281/zenodo.858441](https://doi.org/10.5281/zenodo.858441)
* v0.2.0: [10.5281/zenodo.841303](https://doi.org/10.5281/zenodo.841303)
* v0.1.6: [10.5281/zenodo.831332](https://doi.org/10.5281/zenodo.831332)
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, 4, 0, 'a1')
__version_info__ = (0, 4, 0)
__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 @@ -86,6 +86,7 @@ chemked-version: # TODO: Implement proper version comparison
- 0.2.0
- 0.2.1
- 0.3.0
- 0.4.0
required: true
type: string
experiment-type:
Expand Down

0 comments on commit 1bcab5e

Please sign in to comment.