Bump version to v0.18.0

This commit is contained in:
Stefan Wojcik 2019-06-12 11:47:31 +02:00
parent a6c04f4f9a
commit f08f749cd9

View File

@ -23,12 +23,13 @@ __all__ = (list(document.__all__) + list(fields.__all__) +
list(signals.__all__) + list(errors.__all__)) list(signals.__all__) + list(errors.__all__))
VERSION = (0, 17, 0) VERSION = (0, 18, 0)
def get_version(): def get_version():
"""Return the VERSION as a string, e.g. for VERSION == (0, 10, 7), """Return the VERSION as a string.
return '0.10.7'.
For example, if `VERSION == (0, 10, 7)`, return '0.10.7'.
""" """
return '.'.join(map(str, VERSION)) return '.'.join(map(str, VERSION))