Increment major version to 3.0.0 (compatibility break)

This commit is contained in:
jcamiel 2023-02-25 11:39:18 +01:00
parent 704aebc6b4
commit 55cd58b50a
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
6 changed files with 10 additions and 10 deletions

6
Cargo.lock generated
View File

@ -494,7 +494,7 @@ checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
[[package]]
name = "hurl"
version = "2.1.0-SNAPSHOT"
version = "3.0.0-SNAPSHOT"
dependencies = [
"atty",
"base64",
@ -530,7 +530,7 @@ dependencies = [
[[package]]
name = "hurl_core"
version = "2.1.0-SNAPSHOT"
version = "3.0.0-SNAPSHOT"
dependencies = [
"float-cmp",
"regex",
@ -539,7 +539,7 @@ dependencies = [
[[package]]
name = "hurlfmt"
version = "2.1.0-SNAPSHOT"
version = "3.0.0-SNAPSHOT"
dependencies = [
"atty",
"base64",

View File

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

View File

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

View File

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

View File

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

View File

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