Skip to content

Commit

Permalink
Release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Jul 24, 2018
1 parent 399e2e3 commit f544f9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions HOW_TO_RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Time required: about an hour.
git commit -a -m 'Release v0.X.Y'
6. Tag the release:
git tag -a v0.X.Y -m 'v0.X.Y'
7. Build source and binary wheels for pypi:
python setup.py bdist_wheel sdist
7. Build source for pypi:
python setup.py sdist
8. Use twine to register and upload the release on pypi. Be careful, you can't
take this back!
twine upload dist/xarray_extras-0.X.Y*
Expand Down
2 changes: 1 addition & 1 deletion doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ What's New
.. _whats-new.0.2.2:

v0.2.2 (unreleased)
v0.2.2 (2018-07-24)
-------------------

- Fixed segmentation faults in :func:`~xarray_extras.csv.to_csv`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

MAJOR = 0
MINOR = 2
MICRO = 1
ISRELEASED = False
MICRO = 2
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''

Expand Down

0 comments on commit f544f9c

Please sign in to comment.