From 26b256abe987ff0b32009860d9f1fd79bcfc9d35 Mon Sep 17 00:00:00 2001 From: W Chan Date: Mon, 22 Apr 2019 13:05:44 -0700 Subject: [PATCH] Update version to 0.5 Update version to 0.5 and add entries in CHANGELOG for the release. --- CHANGELOG.rst | 25 +++++++++++++++++++++++++ orquesta/__init__.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0ca874e8..b832d546 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,31 @@ Changelog ========= +0.5 +--- + +Added +~~~~~ + +* Add flake8 extension to restrict import alias. (improvement) +* Add developer docs on getting started, testing, and StackStorm integration. (improvement) + +Changed +~~~~~~~ + +* Refactor concept of task flow to workflow and task state. (improvement) +* Restrict ctx function from returning internal vars. (improvement) + +Fixed +~~~~~ + +* Fix conductor performance for complex workflow definition. (bug fix) +* Fix overwritten context variables on task join. (bug fix) +* Fix with items task stuck in running when item(s) failed. (bug fix) +* Fix task status for various scenarios on with item task. (bug fix) +* Fix return value of item that evaluate to false. (bug fix) +* Fix workflow stuck in resuming when pending task has transition error. (bug fix) + 0.4 --- diff --git a/orquesta/__init__.py b/orquesta/__init__.py index d75220c3..c1fdc915 100644 --- a/orquesta/__init__.py +++ b/orquesta/__init__.py @@ -10,4 +10,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4' +__version__ = '0.5'