From af0bb3fe4f1ca6d4656bf5e02e8ba53752a3d68f Mon Sep 17 00:00:00 2001 From: Nuwan Goonasekera <2070605+nuwang@users.noreply.github.com> Date: Wed, 15 Jun 2022 12:18:21 +0530 Subject: [PATCH] Add change log and set release version to 1.2.0 --- CHANGELOG.rst | 11 +++++++++++ tpv/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d47e7d1..c7f200f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +1.2.0 - Jun 15, 2022. (sha 872d200f3bfeb7356ba76bb1ee14134a50608d92) +-------------------------------------------------------------------- + +* vortex package and cli renamed to tpv for consistency. +* All matching entity regexes are applied, not just the first. Order of application is in the order of definition. +* When a particular entity type is matched, its definitions are cached, so that future lookups are O(1). +* Support for job resubmission handling, with integration tests for Galaxy, +* Allow destinations to be treated as regular entities, with support for rules and expressions. +* Support for global and local context variables that can be referenced in expressions. +* Improved support for complex jobs param types like dicts and lists, which are now recursively evaluated. + 1.1.0 - Mar 25, 2022. (sha 0e65d9a6a16bbbfd463031677067e1af9f4dac64) -------------------------------------------------------------------- diff --git a/tpv/__init__.py b/tpv/__init__.py index 74fc4b6..523f71a 100644 --- a/tpv/__init__.py +++ b/tpv/__init__.py @@ -1,7 +1,7 @@ """Total Perspective Vortex library setup.""" # Current version of the library -__version__ = "1.1.0" +__version__ = "1.2.0" def get_version():