From 97cee530aca9019c3905af0ec1a2f472e7f00bf6 Mon Sep 17 00:00:00 2001 From: W Chan Date: Fri, 15 Feb 2019 12:43:41 -0800 Subject: [PATCH] Update version to 0.4 Update version to 0.4 and add entries in CHANGELOG for the release. --- CHANGELOG.rst | 19 +++++++++++++++++++ orquesta/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ed1d7440..0ca874e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,25 @@ Changelog ========= +0.4 +--- + +Added +~~~~~ + +* Add get_routes function to workflow graph to identify possible execution routes. (new feature) +* Add ascii art diagrams to docs to illustrate workflows with join task. (improvement) + +Fixed +~~~~~ + +* Add sleep in while loop for composing execution graph to spread out cpu spike. (improvement) +* Value in quotes in shorthand publish should be evaluated as string type. Fixes #130 (bug fix) +* Fix interpretation of boolean value in shorthand format of publish. Fixes #119 (bug fix) +* Update YAQL section in docs on use of "=>" for named parameters in function calls. Closes #124 +* Fix with items intepretor to handle variables that contain the word 'in'. (bug fix) + Contributed by Anton Kayukov (@batk0) + 0.3 --- diff --git a/orquesta/__init__.py b/orquesta/__init__.py index 922e7290..d75220c3 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.3' +__version__ = '0.4'