diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8269396..95570a7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 0.13.0 files = setup.py dwdweather/__init__.py commit = True tag = True diff --git a/dwdweather/__init__.py b/dwdweather/__init__.py index a73ba8f..567b5cf 100644 --- a/dwdweather/__init__.py +++ b/dwdweather/__init__.py @@ -1,5 +1,5 @@ """dwdweather2: Python client to access weather data from Deutscher Wetterdienst (DWD).""" __appname__ = "dwdweather2" -__version__ = "0.12.1" +__version__ = "0.13.0" from .core import DwdWeather diff --git a/setup.py b/setup.py index 7d633f2..f6c0ea3 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="dwdweather2", - version="0.12.1", + version="0.13.0", description="Python client to access weather data from Deutscher Wetterdienst (DWD), " "the federal meteorological service in Germany.", long_description=README,