From 786cabd653f3248ce30e0a8c1b1f7d62e851cc6e Mon Sep 17 00:00:00 2001 From: W Chan Date: Wed, 19 May 2021 23:53:37 +0000 Subject: [PATCH 1/2] Update version to 1.4.0 Preparing a release of orquesta for st2. Update orquesta version from 1.3.0 to 1.4.0. --- CHANGELOG.rst | 4 ++-- orquesta/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 33bd0bf1..3c23255d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -Developing ----------- +1.4.0 +----- Changed ~~~~~~~ diff --git a/orquesta/__init__.py b/orquesta/__init__.py index 91d356de..5d2bd5a2 100644 --- a/orquesta/__init__.py +++ b/orquesta/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.3.0" +__version__ = "1.4.0" From a382b9734f08e76232de6b01abbe076c906df8b7 Mon Sep 17 00:00:00 2001 From: W Chan Date: Thu, 20 May 2021 04:39:46 +0000 Subject: [PATCH 2/2] Ignore the unittest.mock warning in flake8 The flake8 check is warning that unittest.mock is not used. Add H216 to disable the warning. --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index ccc6d513..91672d7b 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] max-line-length = 100 enable-extensions = H203,H204,H205,H301,H303,H304,O101,O102 -ignore = E203,E402,W503 +ignore = H216,E203,E402,W503 exclude=*.egg/*