Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.4.2 #60

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# 1.4.2 (2023-04-24)

- Adjusted logic for `heat_index` to match [WeatherFlow documentation](https://weatherflow.github.io/Tempest/api/derived-metric-formulas.html#heat-index)
- Add `feels_like_temperature` to calc.py

# 1.4.1 (2022-07-11)

- Adjusted logic for calculate_sea_level_pressure to match WeatherFlow (https://weatherflow.github.io/Tempest/api/derived-metric-formulas.html#sea-level-pressure)
- Adjusted logic for calculate_sea_level_pressure to match [WeatherFlow documentation](https://weatherflow.github.io/Tempest/api/derived-metric-formulas.html#sea-level-pressure)

# 1.4.0 (2022-06-10)

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.4.1"
version = "1.4.2"
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 <natekspencer@gmail.com>"]
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.4.1"
__version__ = "1.4.2"
2 changes: 1 addition & 1 deletion tests/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.4.1"
assert __version__ == "1.4.2"