8000 denote 1.9.0 release by akrherz · Pull Request #159 · python-metar/python-metar · GitHub
[go: up one dir, main page]

Skip to content
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion metar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

__email__ = "pollard@alum.mit.edu"

__version__ = "1.8.0"
__version__ = "1.9.0"

__doc__ = """metar v%s (c) 2009, %s

Expand Down
0