From 31e5803bcf9bfb0c1794f7b740f081cc944b0782 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Tue, 24 Mar 2020 21:44:40 +0800 Subject: [PATCH] bump version 3.0.1 --- docs/CHANGELOG.md | 7 ++++++- httprunner/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 897e8fb6..c8d2ed94 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 3.0.1 (2020-03-24) + +**Changed** + +- remove sentry sdk + ## 3.0.0 (2020-03-10) **Added** @@ -16,7 +22,6 @@ - generate reports/logs folder in current working directory - remove cli `--validate` - remove cli `--pretty` -- remove sentry sdk ## 2.5.7 (2020-02-21) diff --git a/httprunner/__init__.py b/httprunner/__init__.py index a4787d42..831c6293 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.0" +__version__ = "3.0.1" __description__ = "One-stop solution for HTTP(S) testing." __all__ = ["__version__", "__description__"] diff --git a/pyproject.toml b/pyproject.toml index 4ad9d170..a0d6fd5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httprunner" -version = "3.0.0" +version = "3.0.1" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" readme = "README.md"