From cb9a1827b7673d239c5cac4523e5bcbd829efc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Thu, 31 Aug 2023 12:13:47 +0200 Subject: [PATCH] Release v0.5.1 --- .bumpversion.cfg | 2 +- VERSION | 2 +- docs/conf.py | 2 +- docs/whatsnew/v0-5-1.rst | 9 ++------- setup.py | 2 +- src/oemof/solph/__init__.py | 2 +- 6 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2bf2dd509..867d689ee 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1rc1 +current_version = 0.5.1 commit = True tag = True diff --git a/VERSION b/VERSION index 466126fe3..dd9b22ccc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -__version__ = "0.5.1rc1" +__version__ = "0.5.1" diff --git a/docs/conf.py b/docs/conf.py index e18d92cbf..12972c768 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -36,7 +36,7 @@ def setup(app): year = "2014-2023" author = "oemof-developer-group" copyright = "{0}, {1}".format(year, author) -version = release = "0.5.1rc1" +version = release = "0.5.1" pygments_style = "trac" templates_path = ["."] diff --git a/docs/whatsnew/v0-5-1.rst b/docs/whatsnew/v0-5-1.rst index 9a290e439..1922d23ab 100644 --- a/docs/whatsnew/v0-5-1.rst +++ b/docs/whatsnew/v0-5-1.rst @@ -1,5 +1,5 @@ -v0.5.1 (?) ----------- +v0.5.1 (August 31st, 2023) +-------------------------- API changes @@ -61,11 +61,6 @@ Testing * Add tests for experimental SinkDSM component. * Add tests for multi-period investment. -Other changes -############# - - - Contributors ############ diff --git a/setup.py b/setup.py index e14ecded8..8bbc36a0a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*names, **kwargs): setup( name="oemof.solph", - version="0.5.1rc1", + version="0.5.1", license="MIT", description=( "A model generator for energy system modelling and optimisation." diff --git a/src/oemof/solph/__init__.py b/src/oemof/solph/__init__.py index 522d81dfd..d96fb5ed1 100644 --- a/src/oemof/solph/__init__.py +++ b/src/oemof/solph/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.1rc1" +__version__ = "0.5.1" from . import buses from . import components