-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added change log and set release version
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
"""Total Perspective Vortex library setup.""" | ||
|
||
# Current version of the library | ||
__version__ = "0.1.0+dev" | ||
__version__ = "1.0.0" | ||
|
||
|
||
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__ |