diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b5f19a1f..b5de954e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ba53c655..a3bd63427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,7 @@ reference the gitlab/github issue that is related to the change. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.1.1] - 2021-10-25 - -### Features -- Added websocket failed task banner. - -## [0.1.0] - 2021-10-22 +## [0.2.0] - 2021-10-25 ### Breaking changes - Added explicit `subscription_id` parameter to the ProductBlockModel. @@ -24,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added some documentation - Added new form field that gives the ability to add a divider to forms - Better handling of empty optional fields +- Added websocket failed task banner. ## [0.0.21] - 2021-09-22 - Improved docs diff --git a/orchestrator/__init__.py b/orchestrator/__init__.py index dfe4a5101..d82b3bade 100644 --- a/orchestrator/__init__.py +++ b/orchestrator/__init__.py @@ -13,7 +13,7 @@ """This is the orchestrator workflow engine.""" -__version__ = "0.1.1" +__version__ = "0.2.0" from orchestrator.app import OrchestratorCore from orchestrator.settings import app_settings, oauth2_settings