From 2e46ce6889b10a487c9dd0a519d413eaae2a5dbf Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sun, 17 May 2020 10:58:14 +0800 Subject: [PATCH] bump version 3.0.3 --- docs/CHANGELOG.md | 7 +++++++ httprunner/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 12328fae..a9913b4f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # Release History +## 3.0.3 (2020-05-17) + +**Fixed** + +- fix: compatibility with testcase file path includes dots and space +- fix: testcase generator, validate content.xxx => body.xxx + ## 3.0.2 (2020-05-16) **Added** diff --git a/httprunner/__init__.py b/httprunner/__init__.py index 37b5c190..2b0bf6b7 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.2" +__version__ = "3.0.3" __description__ = "One-stop solution for HTTP(S) testing." from httprunner.runner import HttpRunner diff --git a/pyproject.toml b/pyproject.toml index bc4657d9..ce3b3c40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httprunner" -version = "3.0.2" +version = "3.0.3" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" readme = "README.md"