From 9c61f75c284b8182a4d68b179f5a1b07b2734c85 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Tue, 10 Jun 2025 01:34:16 +0200 Subject: [PATCH] release version 0.12.0 --- README.md | 8 +++++--- docs/source/changelog.rst | 12 ++++++++++++ pyhamtools/version.py | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 78edca3..316610e 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,6 @@ This Library is used in production at the [DXHeat.com DX Cluster](https://dxheat Pyhamtools is compatible with Python >=3.6. We check compatibility on OSX, Windows, and Linux with the following Python versions: -* Python 3.6 (will be deprecated in 2025) -* Python 3.7 (will be deprecated in 2025) * Python 3.8 * Python 3.9 * Python 3.10 @@ -46,7 +44,11 @@ We check compatibility on OSX, Windows, and Linux with the following Python vers * [pypy3.9](https://pypy.org/) * [pypy3.10](https://pypy.org/) -The support for Python 2.7 and 3.5 has been deprecated at the end of 2023. The last version which supports Python 2.7 and Python 3.5 is 0.8.7. +### depreciated: Python 2.7 & Python 3.5 +The support for Python 2.7 and 3.5 has been deprecated at the end of 2023. The last version which supports Python 2.7 and Python 3.5 is 0.8.7. + +### depricated: Python 3.6 & Python 3.7 +Support for Python 3.6 and Python 3.7 has been deprecated in June 2025. The last version which support Python 3.6 and Python 3.7 is 0.11.0. ## Documentation diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 25a83c5..804559f 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,18 @@ Changelog --------- +PyHamtools 0.12.0 +================ + +09. June 2025 + +* deprecated support for Python 3.6 +* deprecated support for Python 3.7 +* added support for higher Microwave bands (tnx @sq6emm) +* added support for 10 characters Maidenhead locators (tnx @sq6emm) +* updated CI pipeline + + PyHamtools 0.11.0 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index b3e6bed..8f63cd8 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 11, 0) +VERSION = (0, 12, 0) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))