bumped docs

This commit is contained in:
Tobias Wellnitz, DH1TW 2025-03-02 00:06:11 +01:00
parent 121f684c53
commit 39f1cbf2a5
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,13 @@
Changelog Changelog
--------- ---------
PyHamtools 0.11.0
================
02. March 2025
* added support for Python 3.13
PyHamtools 0.10.0 PyHamtools 0.10.0
================ ================

View file

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