From 307beb4aa1ece07a59b763f1791d87a38383c639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Tue, 10 Oct 2023 12:14:10 +0200 Subject: [PATCH] Bump version number --- docs/conf.py | 6 +++--- setup.py | 2 +- src/oemof/network/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d15d795..55793d8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,10 +17,10 @@ source_suffix = ".rst" master_doc = "index" project = "oemof.network" -year = "2020" -author = "Stephan Günther" +year = "2023" +author = "oemof developer group" copyright = "{0}, {1}".format(year, author) -version = release = "0.5.0a2" +version = release = "0.5.0a3" pygments_style = "trac" templates_path = ["."] diff --git a/setup.py b/setup.py index e59b06f..f8627bd 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def read(*names, **kwargs): setup( name="oemof.network", - version="0.5.0a2", + version="0.5.0a3", license="MIT", description="The network/graph submodules of oemof.", long_description=long_description, diff --git a/src/oemof/network/__init__.py b/src/oemof/network/__init__.py index e2cdec9..40ba57d 100644 --- a/src/oemof/network/__init__.py +++ b/src/oemof/network/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.0a2" +__version__ = "0.5.0a3" from . import energy_system from . import graph