From 5a60dd09b57c170f178204c23495ff53a46b8ef5 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Wed, 11 Dec 2019 16:07:44 +0800 Subject: [PATCH] docs: update changelog for 2.4.0 --- docs/CHANGELOG.md | 10 +++++++++- httprunner/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 04570db4..cdafba1a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,11 +1,19 @@ # Release History -## 2.4.0 (2019-12-04) +## 2.4.0 (2019-12-11) **Added** - feat: validate with python script, ref #773 +**Changed** + +- refactor: make loader as submodule, split to check/locate/load/buildup +- refactor: make built_in as submodule, split to comparators and functions +- refactor: adjust code for context and validator +- docs: update cli argument help +- adjust format code, remove unused import + ## 2.3.3 (2019-12-04) **Fixed** diff --git a/httprunner/__init__.py b/httprunner/__init__.py index b7fe90c3..cb8ce2a1 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.0.b" +__version__ = "2.4.0" __description__ = "One-stop solution for HTTP(S) testing." __all__ = ["__version__", "__description__"] diff --git a/pyproject.toml b/pyproject.toml index 0afc4133..6b14c7d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httprunner" -version = "2.4.0.b" +version = "2.4.0" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" readme = "README.md"