From 84d88faf691d8170c336c9dd7079253dcb3cf422 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 17 Mar 2024 23:11:25 +0100 Subject: [PATCH] created release 0.9.1 --- docs/source/changelog.rst | 7 +++++++ pyhamtools/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 253db87..cc88197 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 04ad96d..3408010 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -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])))