From 7de56be499a505f13f3917bc7495f05e44495f41 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 21 Mar 2022 12:08:19 +0800 Subject: [PATCH] fix #1161: readme path error --- docs/CHANGELOG.md | 8 +++++++- httprunner/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index cbdb4373..155f1f63 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 3.1.7 (2022-03-21) + +- fix: ignore comments and blank lines when parsing .env file +- fix: failure in getting client and server IP/port when requesting HTTPS +- fix: upgrade dependencies for security + ## 3.1.6 (2021-07-18) **Fixed** @@ -259,7 +265,7 @@ **Added** -- feat: add `make` sub-command to generate python testcases from YAML/JSON +- feat: add `make` sub-command to generate python testcases from YAML/JSON - feat: format generated python testcases with [`black`](https://github.com/psf/black) - test: add postman echo & httpbin as testcase examples diff --git a/httprunner/__init__.py b/httprunner/__init__.py index a08a40bf..d57ef6ff 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.1.6" +__version__ = "3.1.7" __description__ = "One-stop solution for HTTP(S) testing." # import firstly for monkey patch if needed diff --git a/pyproject.toml b/pyproject.toml index 5201c3b9..fad32185 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [tool.poetry] name = "httprunner" -version = "3.1.6" +version = "3.1.7" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" -readme = "README.md" +readme = "docs/README.md" authors = ["debugtalk "] homepage = "https://github.com/httprunner/httprunner"