Skip to content

Commit c352a86

Browse files
committed
Also need to bump version in gridtools/__init__.py
1 parent ac8e955 commit c352a86

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/development/DEPLOY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This document the steps needed for a complete release.
66

77
- [ ] Ensure `binder/environment.yml` is in sync with `conda/gridTools_export-linux-64.yml`
88
- [ ] Ensure dev passes continuous integration tests with submitted PR
9+
- [ ] Ensure release/version is properly updated in `gridtools/__init__.py`
910
- [ ] Commit with "Release x.y.z"
1011
- [ ] Add and commit a tag with x.y.z
1112
- [ ] Run through a Release on the github site

gridtools/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
# DeprecationWarning, module='docutils.io')
2626

2727
# For __version__ add + to check if we are installing from a github repo
28-
__version__ = '0.1.0+'
29-
__released__ = '0.1.0' # used when Sphinx builds its own docs
28+
__version__ = '0.1.1+'
29+
__released__ = '0.1.1' # used when Sphinx builds its own docs
3030

3131
#: Version info for better programmatic use.
3232
#:
@@ -36,7 +36,7 @@
3636
#:
3737
#: .. versionadded:: 1.2
3838
#: Before version 1.2, check the string ``sphinx.__version__``.
39-
version_info = (0, 1, 0, 'alpha', 0)
39+
version_info = (0, 1, 1, 'alpha', 0)
4040

4141
package_dir = path.abspath(path.dirname(__file__))
4242

0 commit comments

Comments
 (0)