diff --git a/doc/release-notes.rst b/doc/release-notes.rst index 75f8f33c..90c84d10 100644 --- a/doc/release-notes.rst +++ b/doc/release-notes.rst @@ -5,6 +5,9 @@ History of Changes .. Upcoming Version .. ---------------- +Version 0.5.14 (30.04.2024) +--------------------------- + * Bugfix to ensure compatibility with python 3.12. Version 0.5.13 (25.04.2024) diff --git a/powerplantmatching/__init__.py b/powerplantmatching/__init__.py index 96f7eb22..fe20c56d 100644 --- a/powerplantmatching/__init__.py +++ b/powerplantmatching/__init__.py @@ -24,7 +24,7 @@ from __future__ import absolute_import -__version__ = "0.5.13" +__version__ = "0.5.14" __author__ = "Fabian Hofmann" __copyright__ = "Copyright 2017-2024 Technical University of Berlin" # The rough hierarchy of this package is diff --git a/setup.py b/setup.py index 713f1388..2829bdee 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="powerplantmatching", - version="0.5.13", + version="0.5.14", author="Fabian Hofmann (FIAS), Jonas Hoersch (KIT), Fabian Gotzens (FZ Jülich)", author_email="hofmann@fias.uni-frankfurt.de", description="Toolset for generating and managing Power Plant Data",