From 0c56b7134c46812c81a4b58d72cd84ff1d7712a6 Mon Sep 17 00:00:00 2001 From: Nathaniel Greenwell <61354864+ntvmb@users.noreply.github.com> Date: Sat, 25 May 2024 07:36:46 -0500 Subject: [PATCH] 2024.5.25 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9bfb1f..48a11b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ CycloMonitor changelog +# 2024.5.25 +* Change: Try to accomodate for recent dissipations when considering whether or not to suppress an automatic update +* Fix: Fix desynced lists in the get_forecast command when the last update was from the main source +* Removed: Warning message on CLI startup removed since it's not longer relevant + # 2024.5.15 * Fix: Fix [#3](https://github.com/ntvmb/cyclomonitor/issues/3) diff --git a/setup.py b/setup.py index 8f193cd..bd9207e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import pathlib -__version__ = "2024.5.15" +__version__ = "2024.5.25" here = pathlib.Path(__file__).parent.resolve()