From a68dad5b5aa407e95e6edc7fbee4bf5809ffd69e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Tue, 25 Jun 2024 11:27:59 +0200 Subject: [PATCH] Work towards v0.5.4 --- docs/changelog.rst | 1 + docs/whatsnew/v0-5-4.rst | 31 +++++++++++++++++++++++++++++++ src/oemof/solph/__init__.py | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 docs/whatsnew/v0-5-4.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 75660133e..63c0c0356 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -9,6 +9,7 @@ These are new features and improvements of note in each release :backlinks: top +.. include:: whatsnew/v0-5-4.rst .. include:: whatsnew/v0-5-3.rst .. include:: whatsnew/v0-5-2.rst .. include:: whatsnew/v0-5-1.rst diff --git a/docs/whatsnew/v0-5-4.rst b/docs/whatsnew/v0-5-4.rst new file mode 100644 index 000000000..711360e12 --- /dev/null +++ b/docs/whatsnew/v0-5-4.rst @@ -0,0 +1,31 @@ +v0.5.4 +------ + +API changes +########### + + +New features +############ + + +Documentation +############# + +Bug fixes +######### + + +Other changes +############# + + +Known issues +############ + +* Incompatible to numpy >= 2.0.0. This is because of Pyomo, but we have to + enforce a lower version in our package. + +Contributors +############ + diff --git a/src/oemof/solph/__init__.py b/src/oemof/solph/__init__.py index 16809c753..92d88d668 100644 --- a/src/oemof/solph/__init__.py +++ b/src/oemof/solph/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3" +__version__ = "0.5.4a1" from . import buses from . import components