Create 2.0.1 release

This commit is contained in:
hurl-bot 2023-02-01 16:15:48 +00:00
parent 849b154e76
commit 0c737817e5
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
6 changed files with 10 additions and 10 deletions

6
Cargo.lock generated
View File

@ -497,7 +497,7 @@ checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
[[package]]
name = "hurl"
version = "2.0.1-SNAPSHOT"
version = "2.0.1"
dependencies = [
"atty",
"base64",
@ -531,7 +531,7 @@ dependencies = [
[[package]]
name = "hurl_core"
version = "2.0.1-SNAPSHOT"
version = "2.0.1"
dependencies = [
"float-cmp",
"regex",
@ -540,7 +540,7 @@ dependencies = [
[[package]]
name = "hurlfmt"
version = "2.0.1-SNAPSHOT"
version = "2.0.1"
dependencies = [
"atty",
"base64",

View File

@ -1,4 +1,4 @@
.TH hurl 1 "01 Feb 2023" "hurl 2.0.1-SNAPSHOT" " Hurl Manual"
.TH hurl 1 "01 Feb 2023" "hurl 2.0.1" " Hurl Manual"
.SH NAME
hurl - run and test HTTP requests.

View File

@ -1,4 +1,4 @@
.TH hurl 1 "01 Feb 2023" "hurl 2.0.1-SNAPSHOT" " Hurl Manual"
.TH hurl 1 "01 Feb 2023" "hurl 2.0.1" " Hurl Manual"
.SH NAME
hurlfmt - format Hurl files

View File

@ -1,6 +1,6 @@
[package]
name = "hurl"
version = "2.0.1-SNAPSHOT"
version = "2.0.1"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"
@ -29,7 +29,7 @@ float-cmp = "0.9.0"
glob = "0.3.1"
hex = "0.4.3"
hex-literal = "0.3.4"
hurl_core = { version = "2.0.1-SNAPSHOT", path = "../hurl_core" }
hurl_core = { version = "2.0.1", path = "../hurl_core" }
indexmap = "1.9.2"
libflate = "1.2.0"
libxml = "0.3.1"

View File

@ -1,6 +1,6 @@
[package]
name = "hurl_core"
version = "2.0.1-SNAPSHOT"
version = "2.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 = "2.0.1-SNAPSHOT"
version = "2.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.1.4", features = ["cargo", "wrap_help"] }
colored = "2.0.0"
hurl_core = { version = "2.0.1-SNAPSHOT", path = "../hurl_core" }
hurl_core = { version = "2.0.1", path = "../hurl_core" }
regex = "1.7.1"
[dev-dependencies]