From 6ecaf08b2e14e525c5a3b0c847e2f7ae31d998ed Mon Sep 17 00:00:00 2001 From: mbridak Date: Mon, 19 Feb 2024 10:26:56 -0800 Subject: [PATCH] bump and doc --- README.md | 1 + fdlogger/lib/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dd85800..ef18e0c 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ brother. ## Recent Changes +- [24.2.19] Corrected the datetime.utcnow() deprecation to work on Python 3.9+ - [24.2.11] Trapped a KeyError in get_state() - [24.1.27] Removed some datetime.utcnow() and pkgutil.getloader() deprecations. - [23.11.9] Merged from @wvolz fixing crash related to tuning to a non ham band. diff --git a/fdlogger/lib/version.py b/fdlogger/lib/version.py index 1cbbf98..2b30c00 100644 --- a/fdlogger/lib/version.py +++ b/fdlogger/lib/version.py @@ -1,2 +1,2 @@ """It's the version""" -__version__ = "24.2.11" +__version__ = "24.2.19" diff --git a/pyproject.toml b/pyproject.toml index 983d25b..1423a53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "fdlogger" -version = "24.2.11" +version = "24.2.19" description = "ARRL Field Day logger GUI" readme = "README.md" requires-python = ">=3.9"