From c277115f347ca6436d47f60f0f512155c51ee810 Mon Sep 17 00:00:00 2001 From: akrherz Date: Fri, 31 Dec 2021 07:56:05 -0600 Subject: [PATCH] denote 1.9.0 release --- CHANGELOG.md | 21 +++++++++++++++++++++ metar/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bcb35e0..549c4f92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ Change Log ========== +metar-1.9.0 (2 January 2022) + +This release is mostly a maintanence release with one small API break that +was unused within this library. + +- [#110](https://github.com/python-metar/python-metar/issues/110) *API Break*, +Remove unused/broken position.getdistance API. +- [#139](https://github.com/python-metar/python-metar/issues/139) Defaults wind +speed units to knots for sites with US identifiers and meters per second for +all others. +- [#147](https://github.com/python-metar/python-metar/issues/147) Allow parsing +of METARs with wind and visibility after the sky condition group. +- [#148](https://github.com/python-metar/python-metar/issues/148) Parse sea +level pressure (SLP) when found after the altimeter value. +- [#24](https://github.com/python-metar/python-metar/issues/24) Fix parsing +of runway identifier in windshear group. +- [#136](https://github.com/python-metar/python-metar/issues/136) Allow for +one digit temperatures. +- [#156](https://github.com/python-metar/python-metar/issues/156) Rename +`master` branch to `main`. + metar-1.8.0 (28 December 2020) ------------------------------ diff --git a/metar/__init__.py b/metar/__init__.py index 3d938849..bbc66c13 100644 --- a/metar/__init__.py +++ b/metar/__init__.py @@ -28,7 +28,7 @@ __email__ = "pollard@alum.mit.edu" -__version__ = "1.8.0" +__version__ = "1.9.0" __doc__ = """metar v%s (c) 2009, %s