Skip to content

Commit

Permalink
Bumpversion
Browse files Browse the repository at this point in the history
  • Loading branch information
pboers1988 committed Nov 3, 2021
1 parent b55adf7 commit b3f6db9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

Expand Down
2 changes: 1 addition & 1 deletion orchestrator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

"""This is the orchestrator workflow engine."""

__version__ = "0.2.0"
__version__ = "0.2.1"

from orchestrator.app import OrchestratorCore
from orchestrator.settings import app_settings, oauth2_settings
Expand Down
2 changes: 1 addition & 1 deletion orchestrator/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class SubscriptionLifecycle(strEnum):
SubscriptionLifecycle.ACTIVE: [
SubscriptionLifecycle.ACTIVE,
SubscriptionLifecycle.MIGRATING,
SubscriptionLifecycle.PROVISIONING
SubscriptionLifecycle.PROVISIONING,
],
SubscriptionLifecycle.MIGRATING: [SubscriptionLifecycle.ACTIVE],
SubscriptionLifecycle.PROVISIONING: [SubscriptionLifecycle.ACTIVE],
Expand Down

0 comments on commit b3f6db9

Please sign in to comment.