From 9fc30ed167a2c5f0d27425d4110638b2c88d3953 Mon Sep 17 00:00:00 2001 From: AllyWang Date: Wed, 10 Aug 2022 11:55:30 +0800 Subject: [PATCH] release v0.9.6 --- HISTORY.rst | 10 ++++++++++ version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 565bcb8d..3ac84ee0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ Release History =============== +0.9.6 ++++++ +* Support modify argument default value and reverse bool argument expression (#106) +* Add default and blank value validation for argbase and arg(#106) +* Add reformat to verify command model(#106) +* Support default value modification ui(#106) +* Ignore argument default for update actions (#107) +* Add argument to specify workspace path (#108) +* Fix bug to print string with newline (#110) + 0.9.5 +++++ * Limit minimal python version to 3.8 (#98)(#99)(#101) diff --git a/version.py b/version.py index 1769e71d..08b5b555 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "9", "5", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "9", "6", "") # _PATCH: On main and in a nightly release the patch should be one ahead of the last released build. # _SUFFIX: This is mainly for nightly builds which have the suffix ".dev$DATE". See