0.5.0
Added
- Support additional version info file content in python version files by adding the content given by
--additional_version_info="-rc1234"
to the end of the constructed__version__
content. This will create the following line in aversion.py
file:__version__ = '.'.join(__version_info__) + '-rc1234'
. A created package will thereby be named0.5.0rc1234
if the version is0.5.0
, resolve #14