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"