diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d9046c..1e3a558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.6 – 2023-05-10 + +- Fix bug in lwp offset calculation + ## 0.1.5 – 2023-05-08 - Comment suspicious timezone conversion to make tests pass diff --git a/mwrpy/version.py b/mwrpy/version.py index 815f7ea..84d3bf3 100644 --- a/mwrpy/version.py +++ b/mwrpy/version.py @@ -1,4 +1,4 @@ MAJOR = 0 MINOR = 1 -PATCH = 5 +PATCH = 6 __version__ = f"{MAJOR}.{MINOR}.{PATCH}"