From e57a5bbbf08cf68cd82eed11ae59410dae059bef Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Mon, 28 Aug 2023 16:47:56 -0600 Subject: [PATCH] Release 1.4.4 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- pyweatherflowudp/__init__.py | 2 +- tests/test_version.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a5b5a..3c07ac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.4.4 (2023-08-28) + +- Add `power_save_mode` property to Tempest devices + # 1.4.3 (2023-08-13) - Support Pint >=0.19 diff --git a/pyproject.toml b/pyproject.toml index daf16e3..a6e131b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyweatherflowudp" -version = "1.4.3" +version = "1.4.4" description = "An event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud." license = "MIT" authors = ["Nathan Spencer "] diff --git a/pyweatherflowudp/__init__.py b/pyweatherflowudp/__init__.py index c48685e..e2ceb83 100644 --- a/pyweatherflowudp/__init__.py +++ b/pyweatherflowudp/__init__.py @@ -1,2 +1,2 @@ """Asynchronous library to read UDP Packets from Weatherflow weather systems.""" -__version__ = "1.4.3" +__version__ = "1.4.4" diff --git a/tests/test_version.py b/tests/test_version.py index 53927be..197385f 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test version.""" - assert __version__ == "1.4.3" + assert __version__ == "1.4.4"