Skip to content

Commit

Permalink
bump to v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleniemeyer committed Apr 14, 2017
1 parent d492c06 commit ba3adc7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## [0.2.1] - 2017-04-14
### Added
- Adds AppVeyor build for Windows conda packages
- Adds CONTRIBUTING guide

## [0.2.0] - 2017-04-13
### Added
Expand Down
6 changes: 3 additions & 3 deletions CITATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

To cite PyTeCK in a scholarly article, please use

> K. E. Niemeyer. (2017) PyTeCK v0.2.0 [software]. https://github.com/kyleniemeyer/PyTeCK
> K. E. Niemeyer. (2017) PyTeCK v0.2.1 [software]. Zenodo. https://doi.org/10.5281/zenodo.######
A BibTeX entry for LaTeX users is

```TeX
@misc{PyKED,
author = {Kyle E Niemeyer},
year = 2017,
title = {PyTeCK v0.2.0},
doi = {},
title = {PyTeCK v0.2.1},
doi = {10.5281/zenodo.######},
url = {https://github.com/kyleniemeyer/PyTeCK},
}
```
Expand Down
2 changes: 1 addition & 1 deletion pyteck/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 2, 0, 'a8')
__version_info__ = (0, 2, 1, '')
__version__ = '.'.join(map(str, __version_info__[:3]))
if len(__version_info__) == 4:
__version__ += __version_info__[-1]

0 comments on commit ba3adc7

Please sign in to comment.