Skip to content

Commit

Permalink
Release v1.3.0 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
natekspencer committed Dec 22, 2021
1 parent ba415d2 commit 5a28d67
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion pyweatherflowudp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Asynchronous library to read UDP Packets from Weatherflow weather systems."""
__version__ = "1.2.0"
__version__ = "1.3.0"
2 changes: 1 addition & 1 deletion test/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

def test_version() -> None:
"""Test version."""
assert __version__ == "1.2.0"
assert __version__ == "1.3.0"

0 comments on commit 5a28d67

Please sign in to comment.