From 44802484008f6cd2a185ff98f0638dfaacc8498b Mon Sep 17 00:00:00 2001 From: debugtalk Date: Tue, 22 Feb 2022 15:50:56 +0800 Subject: [PATCH] bump version to v0.6.2 --- cli/scripts/install.sh | 2 +- docs/CHANGELOG.md | 6 +++--- internal/version/init.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/scripts/install.sh b/cli/scripts/install.sh index e987dee..0d35c05 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.1" +LATEST_VERSION="v0.6.2" set -e diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index cc6bbcf..be5924f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,20 +3,20 @@ ## v0.6.2 (2022-02-22) - feat: support text/html extraction with regex +- change: json unmarshal to json.Number when parsing data - fix: omit pseudo header names for HTTP/1, e.g. :authority - fix: generate `headers.\"Content-Type\"` in har2case -- change: json unmarshal to json.Number when parsing data - fix: incorrect data type when extracting data using jmespath -- fix: decode response body in br/gzip/deflate formats +- fix: decode response body in brotli/gzip/deflate formats - fix: omit print request/response body for non-text content - fix: parse data for request cookie value ## v0.6.1 (2022-02-17) +- change: json unmarshal to float64 when parsing data - fix: set request Content-Type for posting json only when not specified - fix: failed to generate API test report when data is null - fix: panic when assertion function not exists -- change: json unmarshal to float64 when parsing data - fix: broadcast to all rendezvous at once when spawn done ## v0.6.0 (2022-02-08) diff --git a/internal/version/init.go b/internal/version/init.go index e6799e5..895d581 100644 --- a/internal/version/init.go +++ b/internal/version/init.go @@ -1,3 +1,3 @@ package version -const VERSION = "v0.6.1" +const VERSION = "v0.6.2"