From eaed65d25332215e9b11a5b5ee61a3a42bf7fcdb Mon Sep 17 00:00:00 2001 From: mbridak Date: Wed, 15 Jan 2025 21:53:14 -0800 Subject: [PATCH] @mbridak Fix bug in ADIF output where mode showed as CW-R and not CW. --- CHANGELOG.md | 1 + README.md | 1 + not1mm/lib/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea6a501..b1e0ce5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog +- [25-1-15] Fix bug in ADIF output where mode showed as CW-R and not CW. - [25-1-6] Altered RTTY RU UDP ADIF parse. - [25-1-1] Added ARRL RTTY RU. - [24-12-29] Add {LOGIT} macro. diff --git a/README.md b/README.md index b35ad9b..28788bb 100644 --- a/README.md +++ b/README.md @@ -209,6 +209,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's. ## Recent Changes (Polishing the Turd) +- [25-1-15] Fix bug in ADIF output where mode showed as CW-R and not CW. - [25-1-6] Altered RTTY RU UDP ADIF parse. - [25-1-1] Added ARRL RTTY RU. diff --git a/not1mm/lib/version.py b/not1mm/lib/version.py index 3ea39fe..2a8b8b0 100644 --- a/not1mm/lib/version.py +++ b/not1mm/lib/version.py @@ -1,3 +1,3 @@ """It's the version""" -__version__ = "25.1.6" +__version__ = "25.1.15" diff --git a/pyproject.toml b/pyproject.toml index a7dc44b..b0457ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "not1mm" -version = "25.1.6" +version = "25.1.15" description = "NOT1MM Logger" readme = "README.md" requires-python = ">=3.9"