From 5a28d674aff4aac8c5cdf6c27f71eee4b98c25e3 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Wed, 22 Dec 2021 16:17:52 -0700 Subject: [PATCH] Release v1.3.0 (#13) --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- pyweatherflowudp/__init__.py | 2 +- test/test_version.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 514ac1b..d47a9d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.3.0 (2021-12-22) + +- Add cloud base and freezing level calculations +- Rename parameter `height` to `altitude` on calculate_sea_level_pressure + - Works with named height parameter still, but will produce a warning and eventually be dropped + # 1.2.0 (2021-12-21) ## Potential Breaking Change: diff --git a/pyproject.toml b/pyproject.toml index e031643..2e95ea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyweatherflowudp" -version = "1.2.0" +version = "1.3.0" 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 5ab0102..4547059 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.2.0" +__version__ = "1.3.0" diff --git a/test/test_version.py b/test/test_version.py index d062667..93808cb 100644 --- a/test/test_version.py +++ b/test/test_version.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test version.""" - assert __version__ == "1.2.0" + assert __version__ == "1.3.0"