diff --git a/README.md b/README.md index 2b032eb..c7953c5 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ All functions accept the `lang` keyword parameter. Supported languages are `is` ## Version History -* 0.2.2 - `*_for_closest` functions now fall back on other close stations if first fails (2023-01-09) +* 0.2.3 - `*_for_closest` functions now fall back on other close stations if first fails (2023-01-09) * 0.2.1 - Updated weather station data. Now requires Python 3.7+ (2022-12-14) * 0.2.0 - Now uses the Icelandic Met Office's XML API directly instead apis.is (2021-07-15) * 0.1.1 - Fall back on other close weather stations for if err in result from closest station diff --git a/iceweather/__init__.py b/iceweather/__init__.py index 1bc03c4..6153c11 100755 --- a/iceweather/__init__.py +++ b/iceweather/__init__.py @@ -25,7 +25,7 @@ STATIONS, ) -__version__ = "0.2.2" +__version__ = "0.2.3" __author__ = "Miðeind ehf." __copyright__ = "(C) 2022 Miðeind ehf." __license__ = "BSD 3-clause License" diff --git a/setup.py b/setup.py index 27e074a..2adc7a0 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setuptools.setup( name="iceweather", - version="0.2.2", + version="0.2.3", author="Miðeind ehf.", author_email="mideind@mideind.is", license="BSD",