From d2145fc7ff1d2dbfd19bc451df92b9c732c0e69b Mon Sep 17 00:00:00 2001 From: W Chan Date: Wed, 14 Oct 2020 10:12:38 -0700 Subject: [PATCH] Update version to 1.2.0 Preparing a release of orquesta for st2. Update orquesta version from 1.1.1 to 1.2.0. --- CHANGELOG.rst | 11 +++++++++-- orquesta/__init__.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 73e06329..11f90598 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,14 @@ Changelog ========= -In Progress ------------ +1.2.0 +----- + +Changed +~~~~~~~ +* Run pep8 and docs in tox with python3. +* Use black https://pypi.org/project/black/ for code formatting. +* Update tox to return error if there are uncommitted schema changes. Fixed ~~~~~ @@ -10,6 +16,7 @@ Fixed * Warn users when there is a loop and no start task identified. (bug fix) * Lock global variables during initialization to make them thread safe. (bug fix) * Workflow stuck in running if one or more items failed in a with items task. (bug fix) +* Fix use case where a failed with items task is run again if the task is in a cycle. (bug fix) 1.1.1 ----- diff --git a/orquesta/__init__.py b/orquesta/__init__.py index e3e6fa53..a73b701b 100644 --- a/orquesta/__init__.py +++ b/orquesta/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.1.1" +__version__ = "1.2.0"