From 4e67595dc3bbc110fbaeab1aa1eea9eaa245c365 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Tue, 15 Mar 2022 23:55:42 +0800 Subject: [PATCH] bump version to v0.7.0 --- cli/scripts/install.sh | 2 +- docs/CHANGELOG.md | 8 ++++++++ internal/version/init.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/cli/scripts/install.sh b/cli/scripts/install.sh index 6714419..632e403 100644 --- a/cli/scripts/install.sh +++ b/cli/scripts/install.sh @@ -2,7 +2,7 @@ # install hrp with one shell command # bash -c "$(curl -ksSL https://httprunner.oss-cn-beijing.aliyuncs.com/install.sh)" -LATEST_VERSION="v0.6.4" +LATEST_VERSION="v0.7.0" set -e diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 18dcf40..f72d194 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,13 @@ # Release History +## v0.7.0 (2022-03-15) + +- feat: support API layer for testcase #94 +- feat: support global headers for testcase #95 +- feat: support call referenced testcase by path in YAML/JSON testcases +- fix: decode failure when content-encoding is deflate +- fix: unstable RPS when load testing in high concurrency + ## v0.6.4 (2022-03-10) - feat: both support gPRC(default) and net/rpc mode in hashicorp plugin, switch with environment `HRP_PLUGIN_TYPE` diff --git a/internal/version/init.go b/internal/version/init.go index 6f7e9d8..4546a26 100644 --- a/internal/version/init.go +++ b/internal/version/init.go @@ -1,3 +1,3 @@ package version -const VERSION = "v0.6.4" +const VERSION = "v0.7.0"