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'