diff --git a/HISTORY.md b/HISTORY.md new file mode 100644 index 0000000..2fd6080 --- /dev/null +++ b/HISTORY.md @@ -0,0 +1,10 @@ +# History of changes for sondera + +## Version 0.0.2 (tbd) + +* Closed #1. OSError on Windows with negative posix timestamps +* Closed #2. Improve message on not found error + +## Version 0.0.1 (2022-05-05) + +* First alpha release on PyPI. Experimental API \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index b976c32..344f6f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sondera -version = 0.0.1 +version = 0.0.2 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.1 +current_version = 0.0.2 commit = True tag = True diff --git a/src/sondera/__init__.py b/src/sondera/__init__.py index 3463a04..ce95fb2 100644 --- a/src/sondera/__init__.py +++ b/src/sondera/__init__.py @@ -2,4 +2,4 @@ __author__ = """Reinert Huseby Karlsen""" __email__ = '' -__version__ = '0.0.1' +__version__ = '0.0.2'