From e27cd3e540172f3da9d6145c17a30d396cc428df Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 4 Oct 2021 02:15:22 +0200 Subject: [PATCH] Bumped version to v0.3.0 for renaming to pySVModel. --- doc/conf.py | 4 ++-- pySVModel/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 5c1fae28..067e7671 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -36,8 +36,8 @@ def _LatestTagName(): return check_output(["git", "describe", "--abbrev=0", "--tags"], universal_newlines=True).strip() # The full version, including alpha/beta/rc tags -version = "0.2" # The short X.Y version. -release = "0.2.2" # The full version, including alpha/beta/rc tags. +version = "0.3" # The short X.Y version. +release = "0.3.0" # The full version, including alpha/beta/rc tags. try: if _IsUnderGitControl: latestTagName = _LatestTagName()[1:] # remove prefix "v" diff --git a/pySVModel/__init__.py b/pySVModel/__init__.py index 4274be57..f08cd2a3 100644 --- a/pySVModel/__init__.py +++ b/pySVModel/__init__.py @@ -45,7 +45,7 @@ from pydecor import export -__version__ = "0.2.2" +__version__ = "0.3.0" @export diff --git a/setup.py b/setup.py index 09845501..5eae7380 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ # Assemble all package information setuptools_setup( name=projectName, - version="0.2.2", + version="0.3.0", author="Patrick Lehmann", author_email="Paebbels@gmail.com",