update: hrp version => v4.1.1

This commit is contained in:
buyuxiang
2022-05-31 15:11:33 +08:00
parent 145e6555f3
commit 90ef77bced
12 changed files with 16 additions and 12 deletions

View File

@@ -1,5 +1,9 @@
# Release History
## v4.1.1 (2022-05-31)
- fix: failed to build debugtalk.go without go.mod
- fix: avoid to escape from html special characters like '&'
## v4.1.0 (2022-05-29)
- feat: add `wiki` sub-command to open httprunner website

View File

@@ -2,5 +2,5 @@
"project_name": "demo-empty-project",
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/demo-empty-project",
"create_time": "2022-05-29T13:24:31.960615+08:00",
"hrp_version": "v4.1.0"
"hrp_version": "v4.1.1"
}

View File

@@ -2,5 +2,5 @@
"project_name": "demo-with-go-plugin",
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/demo-with-go-plugin",
"create_time": "2022-05-29T13:24:29.431434+08:00",
"hrp_version": "v4.1.0"
"hrp_version": "v4.1.1"
}

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By hrp v4.1.0, DO NOT EDIT!
# NOTE: Generated By hrp v4.1.1, DO NOT EDIT!
import logging
import time

View File

@@ -2,5 +2,5 @@
"project_name": "demo-with-py-plugin",
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/demo-with-py-plugin",
"create_time": "2022-05-29T13:24:29.566414+08:00",
"hrp_version": "v4.1.0"
"hrp_version": "v4.1.1"
}

View File

@@ -2,5 +2,5 @@
"project_name": "demo-without-plugin",
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/demo-without-plugin",
"create_time": "2022-05-29T13:24:31.840718+08:00",
"hrp_version": "v4.1.0"
"hrp_version": "v4.1.1"
}

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By hrp v4.1.0, DO NOT EDIT!
# NOTE: Generated By hrp v4.1.1, DO NOT EDIT!
import logging
import time

View File

@@ -1,4 +1,4 @@
// NOTE: Generated By hrp v4.1.0, DO NOT EDIT!
// NOTE: Generated By hrp v4.1.1, DO NOT EDIT!
package main
import (
@@ -12,5 +12,5 @@ func main() {
fungo.Register("SetupHookExample", SetupHookExample)
fungo.Register("TeardownHookExample", TeardownHookExample)
fungo.Register("GetUserAgent", GetUserAgent)
fungo.Serve()
fungo.Serve()
}

View File

@@ -1 +1 @@
v4.1.0
v4.1.1

View File

@@ -7,4 +7,4 @@ import (
//go:embed VERSION
var VERSION string
const HttpRunnerMinVersion = "v4.0.0-beta"
const HttpRunnerMinVersion = "v4.1.0"

View File

@@ -1,4 +1,4 @@
__version__ = "v4.1.0"
__version__ = "v4.1.1"
__description__ = "One-stop solution for HTTP(S) testing."

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "httprunner"
version = "v4.1.0"
version = "v4.1.1"
description = "One-stop solution for HTTP(S) testing."
license = "Apache-2.0"
readme = "README.md"