mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-31 13:29:35 +08:00
update: hrp version => v4.1.1
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Release History
|
# 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)
|
## v4.1.0 (2022-05-29)
|
||||||
|
|
||||||
- feat: add `wiki` sub-command to open httprunner website
|
- feat: add `wiki` sub-command to open httprunner website
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
"project_name": "demo-empty-project",
|
"project_name": "demo-empty-project",
|
||||||
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/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",
|
"create_time": "2022-05-29T13:24:31.960615+08:00",
|
||||||
"hrp_version": "v4.1.0"
|
"hrp_version": "v4.1.1"
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@
|
|||||||
"project_name": "demo-with-go-plugin",
|
"project_name": "demo-with-go-plugin",
|
||||||
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/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",
|
"create_time": "2022-05-29T13:24:29.431434+08:00",
|
||||||
"hrp_version": "v4.1.0"
|
"hrp_version": "v4.1.1"
|
||||||
}
|
}
|
||||||
@@ -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 logging
|
||||||
import time
|
import time
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
"project_name": "demo-with-py-plugin",
|
"project_name": "demo-with-py-plugin",
|
||||||
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/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",
|
"create_time": "2022-05-29T13:24:29.566414+08:00",
|
||||||
"hrp_version": "v4.1.0"
|
"hrp_version": "v4.1.1"
|
||||||
}
|
}
|
||||||
@@ -2,5 +2,5 @@
|
|||||||
"project_name": "demo-without-plugin",
|
"project_name": "demo-without-plugin",
|
||||||
"project_path": "/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/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",
|
"create_time": "2022-05-29T13:24:31.840718+08:00",
|
||||||
"hrp_version": "v4.1.0"
|
"hrp_version": "v4.1.1"
|
||||||
}
|
}
|
||||||
@@ -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 logging
|
||||||
import time
|
import time
|
||||||
|
|||||||
@@ -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
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -12,5 +12,5 @@ func main() {
|
|||||||
fungo.Register("SetupHookExample", SetupHookExample)
|
fungo.Register("SetupHookExample", SetupHookExample)
|
||||||
fungo.Register("TeardownHookExample", TeardownHookExample)
|
fungo.Register("TeardownHookExample", TeardownHookExample)
|
||||||
fungo.Register("GetUserAgent", GetUserAgent)
|
fungo.Register("GetUserAgent", GetUserAgent)
|
||||||
fungo.Serve()
|
fungo.Serve()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
v4.1.0
|
v4.1.1
|
||||||
@@ -7,4 +7,4 @@ import (
|
|||||||
//go:embed VERSION
|
//go:embed VERSION
|
||||||
var VERSION string
|
var VERSION string
|
||||||
|
|
||||||
const HttpRunnerMinVersion = "v4.0.0-beta"
|
const HttpRunnerMinVersion = "v4.1.0"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = "v4.1.0"
|
__version__ = "v4.1.1"
|
||||||
__description__ = "One-stop solution for HTTP(S) testing."
|
__description__ = "One-stop solution for HTTP(S) testing."
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "httprunner"
|
name = "httprunner"
|
||||||
version = "v4.1.0"
|
version = "v4.1.1"
|
||||||
description = "One-stop solution for HTTP(S) testing."
|
description = "One-stop solution for HTTP(S) testing."
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
Reference in New Issue
Block a user