From 427290bc21f51378c9661b7e584a9fe0d6136010 Mon Sep 17 00:00:00 2001 From: Jan Range Date: Sun, 19 Nov 2023 15:01:10 +0100 Subject: [PATCH] bump version number --- README.md | 2 +- docs/conf.py | 2 +- pyenzyme/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7066326..c3f2184 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

PyEnzyme
- v1.1.4 + v1.1.5 Build Badge Documentation Status diff --git a/docs/conf.py b/docs/conf.py index 25519f1..87190fd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Jan Range, Dr. Frank Bergmann, Prof. Dr. Johann Rohwer" # The full version, including alpha/beta/rc tags -release = "1.1.4" +release = "1.1.5" # -- General configuration --------------------------------------------------- diff --git a/pyenzyme/__init__.py b/pyenzyme/__init__.py index c73ffa4..fc23d64 100644 --- a/pyenzyme/__init__.py +++ b/pyenzyme/__init__.py @@ -19,4 +19,4 @@ import pyenzyme.enzymeml.models -__version__ = "1.1.4" +__version__ = "1.1.5" diff --git a/setup.py b/setup.py index 40ef082..b72322a 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="PyEnzyme", - version="1.1.4", + version="1.1.5", description="Handling of EnzymeML files", url="https://github.com/EnzymeML/PyEnzyme", author="Range, Jan", @@ -41,7 +41,7 @@ "pyyaml", "deprecation", "xmltodict", - "requests" + "requests", ], extras_require={ "test": ["pytest-cov"],