Bump version: 3.1.2 → 3.2.0

I had forgotten to bump the version for 3.2.0... Sorry :(

This is not a problem for the released packages, since versioneer correctly writes the tagged version.
It's only the hard-coded version string that's used as a fallback if git fails to compute the version which I forgot to update.
This commit is contained in:
Cosimo Lupo 2016-11-03 14:12:09 +00:00
parent c653e1408c
commit c66a2bc327
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ log = logging.getLogger(__name__)
v = get_versions() v = get_versions()
if v["error"]: if v["error"]:
__import__('warnings').warn("versioneer: %s" % v['error'], RuntimeWarning) __import__('warnings').warn("versioneer: %s" % v['error'], RuntimeWarning)
__version__ = "3.1.2" __version__ = "3.2.0"
else: else:
__version__ = v['version'] __version__ = v['version']
del get_versions, v del get_versions, v

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 3.1.2 current_version = 3.2.0
commit = True commit = True
tag = True tag = True
tag_name = {new_version} tag_name = {new_version}