diff --git a/HISTORY.md b/HISTORY.md index 2fd6080..f8f0a66 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,9 +1,14 @@ # History of changes for sondera -## Version 0.0.2 (tbd) +## Version 0.0.3 (2022-05-10) + +* Closed #4. dtype of data sometimes returned as non-numeric for SMHI data +* Improve testing + +## Version 0.0.2 (2022-05-09) * Closed #1. OSError on Windows with negative posix timestamps -* Closed #2. Improve message on not found error +* Closed #3. Improve message on not found error ## Version 0.0.1 (2022-05-05) diff --git a/setup.cfg b/setup.cfg index 344f6f6..488a3fd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sondera -version = 0.0.2 +version = 0.0.3 description = Python client for accessing Swedish hydrology and meteorology related open data and observations. long_description = file: README.md, LICENSE long_description_content_type = text/markdown @@ -37,7 +37,7 @@ test = pytest [bumpversion] -current_version = 0.0.2 +current_version = 0.0.3 commit = True tag = True diff --git a/src/sondera/__init__.py b/src/sondera/__init__.py index ce95fb2..656e399 100644 --- a/src/sondera/__init__.py +++ b/src/sondera/__init__.py @@ -2,4 +2,4 @@ __author__ = """Reinert Huseby Karlsen""" __email__ = '' -__version__ = '0.0.2' +__version__ = '0.0.3'