created release 0.9.1

This commit is contained in:
Tobias Wellnitz, DH1TW 2024-03-17 23:11:25 +01:00
parent 5799c7337b
commit 84d88faf69
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,13 @@
Changelog
---------
PyHamtools 0.9.1
================
17. March 2024
* switched from distutils to setuptools. No impact for endusers.
PyHamtools 0.9.0
================

View file

@ -1,3 +1,3 @@
VERSION = (0, 9, 0)
VERSION = (0, 9, 1)
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))