diff --git a/README.rst b/README.rst index 1c2b43a..a41ab5a 100644 --- a/README.rst +++ b/README.rst @@ -46,3 +46,11 @@ Questions and support Please post any questions, problems, comments, or suggestions in the `GitHub issue tracker `_. + +Changes +------- + +0.1.0 +~~~~~ + +* First release diff --git a/setup.py b/setup.py index 1ab8a3e..80cb6d0 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ MAJOR = 0 # increment for backwards-incompatible changes MINOR = 1 # increment for backwards-compatible feature additions MICRO = 0 # increment for backwards-compatible bug fixes -IS_RELEASED = False # determines whether version will be marked as development +IS_RELEASED = True # determines whether version will be marked as development VERSION = f'{MAJOR}.{MINOR}.{MICRO}' # Try to fetch the git revision number from the .git directory if it exists.