From 56b7dc14724ec870b1813970d9fa2c285841f18d Mon Sep 17 00:00:00 2001 From: Peter Boers Date: Wed, 22 Sep 2021 11:08:13 +0200 Subject: [PATCH] Bumped the version --- .bumpversion.cfg | 2 +- .gitignore | 1 + orchestrator/__init__.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d23563bd0..a9de0760c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.20 +current_version = 0.0.21 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/.gitignore b/.gitignore index eb45fe797..ed7e69757 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ develop-eggs/ dist/ downloads/ eggs/ +src/ .eggs/ lib/ lib64/ diff --git a/orchestrator/__init__.py b/orchestrator/__init__.py index 4bdea6f5e..deef44822 100644 --- a/orchestrator/__init__.py +++ b/orchestrator/__init__.py @@ -13,7 +13,7 @@ """This is the orchestrator workflow engine.""" -__version__ = "0.0.20" +__version__ = "0.0.21" from orchestrator.app import OrchestratorCore from orchestrator.settings import app_settings, oauth2_settings