diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index fb93872..25a83c5 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,13 @@ Changelog --------- +PyHamtools 0.11.0 +================ + +02. March 2025 + +* added support for Python 3.13 + PyHamtools 0.10.0 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 8aeb2b4..b3e6bed 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 10, 0) +VERSION = (0, 11, 0) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))