diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..ef38b8c --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,6 @@ +1.0.0 - Mar 07, 2022. (sha 2e082a4ec0868e03df1b902562810873421823e5) +-------------------------------------------------------------------- + +* Initial PyPi release of total-perspective-vortex. +* Basic usage docs and examples. +* 94% test coverage. diff --git a/vortex/__init__.py b/vortex/__init__.py index 1ad3e67..f16707b 100644 --- a/vortex/__init__.py +++ b/vortex/__init__.py @@ -1,7 +1,7 @@ """Total Perspective Vortex library setup.""" # Current version of the library -__version__ = "0.1.0+dev" +__version__ = "1.0.0" def get_version(): @@ -9,6 +9,6 @@ def get_version(): Return a string with the current version of the library. :rtype: ``string`` - :return: Library version (e.g., "0.1.0"). + :return: Library version (e.g., "1.0.0"). """ return __version__