Releases: smarie/python-getversion
1.0.2 - fixed version strings in case of prerelease tags
- Prerelease version strings such as
1.0.0-rc1
were incorrectly returned as1.0.0rc1
(without dash) because of an issue withsetuptools_scm
due topkg_resources
removing the dash of prerelease versions. Fixes #10
See documentation page for details.
1.0.1 - bugfix
- Fixed version resolution using
pkg_resources
. Fixed #9
See documentation page for details.
1.0.0 - packaging improvements
- packaging improvements: set the "universal wheel" flag to 1, and cleaned up the
setup.py
. In particular removed dependency tosix
for setup and addedpy.typed
file. Fixes #8
See documentation page for details.
0.5.8 - better error message in case `git` is unavailable
Improved readability of setuptools_scm related outputs:
- Now an explicit message states when
git
command is not available. Fixed #6 - Now an explicit message states when
setuptools_scm
is not installed. Fixed #7.
See documentation page for details.
0.5.7 - minor setup.py improvement
Now explicitly setting the zip_safe
flag in setup.py
to avoid ply
being downloaded. From #5
See documentation page for details.
0.5.6 - fixed setup.py classifiers
It was incorrectly refering to this project as related to testing.
See documentation page for details.
0.5.5 - Own `__version__` was incorrect
Fixed #4.
See documentation page for details.
0.5.4 - Fixed bug in case of package both installed and in the path
Fixed bug (incorrect version number) happening when a package is both installed and available on python path. This typically happens when a developer is working on a new version of a package while an older version is already installed. Fixes #3.
See documentation page for details.
0.5.3 - Self `__version__`
__version__
should now be available on the distributed getversion
package.
See documentation page for details.
0.5.2 - Self `__version__`
__version__
should now be available on the distributed getversion
package.
See documentation page for details.