Update to version 3.0.1

This commit is contained in:
Fabrice Reix 2023-06-01 11:57:56 +02:00
parent 277393700b
commit 67e1871a96
No known key found for this signature in database
GPG Key ID: BF5213154B2E7155
6 changed files with 10 additions and 10 deletions

6
Cargo.lock generated
View File

@ -555,7 +555,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
[[package]]
name = "hurl"
version = "3.0.0"
version = "3.0.1"
dependencies = [
"atty",
"base64",
@ -591,7 +591,7 @@ dependencies = [
[[package]]
name = "hurl_core"
version = "3.0.0"
version = "3.0.1"
dependencies = [
"float-cmp",
"regex",
@ -600,7 +600,7 @@ dependencies = [
[[package]]
name = "hurlfmt"
version = "3.0.0"
version = "3.0.1"
dependencies = [
"atty",
"base64",

View File

@ -1,4 +1,4 @@
.TH hurl 1 "03 May 2023" "hurl 3.0.0" " Hurl Manual"
.TH hurl 1 "01 Jun 2023" "hurl 3.0.1" " Hurl Manual"
.SH NAME
hurl - run and test HTTP requests.

View File

@ -1,4 +1,4 @@
.TH hurl 1 "03 May 2023" "hurl 3.0.0" " Hurl Manual"
.TH hurl 1 "01 Jun 2023" "hurl 3.0.1" " Hurl Manual"
.SH NAME
hurlfmt - format Hurl files

View File

@ -1,6 +1,6 @@
[package]
name = "hurl"
version = "3.0.0"
version = "3.0.1"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"
@ -31,7 +31,7 @@ float-cmp = "0.9.0"
glob = "0.3.1"
hex = "0.4.3"
hex-literal = "0.4.1"
hurl_core = { version = "3.0.0", path = "../hurl_core" }
hurl_core = { version = "3.0.1", path = "../hurl_core" }
indexmap = "1.9.3"
libflate = "1.3.0"
libxml = "0.3.2"

View File

@ -1,6 +1,6 @@
[package]
name = "hurl_core"
version = "3.0.0"
version = "3.0.1"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "hurlfmt"
version = "3.0.0"
version = "3.0.1"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"
@ -18,7 +18,7 @@ atty = "0.2.14"
base64 = "0.21.0"
clap = { version = "4.2.7", features = ["cargo", "wrap_help"] }
colored = "2.0.0"
hurl_core = { version = "3.0.0", path = "../hurl_core" }
hurl_core = { version = "3.0.1", path = "../hurl_core" }
regex = "1.8.1"
[dev-dependencies]