Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
amcgregor committed Sep 13, 2017
1 parent 64155b3 commit 40939a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test: develop
@pytest

release:
./setup.py register sdist bdist_wheel upload ${RELEASE_OPTIONS}
./setup.py sdist bdist_wheel upload ${RELEASE_OPTIONS}
@echo -e "\nView online at: https://pypi.python.org/pypi/${PROJECT} or https://pypi.org/project/${PROJECT}/"
@echo -e "Remember to make a release announcement and upload contents of .packaging/release/ folder as a Release on GitHub.\n"

Expand Down
2 changes: 1 addition & 1 deletion marrow/mongo/core/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from collections import namedtuple

version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 2, 0, 'final', 0)
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 2, 'final', 0)
version = ".".join([str(i) for i in version_info[:3]]) + \
((version_info.releaselevel[0] + str(version_info.serial)) if version_info.releaselevel != 'final' else '')

Expand Down

0 comments on commit 40939a4

Please sign in to comment.