From a5b42948e77be9e0ec3d30c940647c0d78944c82 Mon Sep 17 00:00:00 2001 From: rvhonorato Date: Wed, 7 Sep 2022 07:19:58 +0000 Subject: [PATCH] [SKIP] version bump 1.2.2 -> 1.2.3 Update README.md --- .bumpversion.cfg | 2 +- setup.py | 2 +- src/gdock/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3c6fc79..6e75dc6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.2 +current_version = 1.2.3 commit = True message = [SKIP] version bump {current_version} -> {new_version} diff --git a/setup.py b/setup.py index 4d4448a..c0321ff 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="gdock", license="BSD Zero Clause (0BSD)", - version="1.2.2", + version="1.2.3", author="Rodrigo V. Honorato", description="Genetic Algorithm applied to Protein-Protein Docking", author_email="rvhonorato@protonmail.com", diff --git a/src/gdock/version.py b/src/gdock/version.py index 51a1319..eb197e4 100644 --- a/src/gdock/version.py +++ b/src/gdock/version.py @@ -1,4 +1,4 @@ """This is the software version.""" -version = "1.2.2" +version = "1.2.3" v_major, v_minor, v_patch = version.split(".")