From b2530469dc270b030f24fc42ad07ce986e2e36be Mon Sep 17 00:00:00 2001 From: hurl-bot Date: Wed, 4 Dec 2024 08:51:09 +0000 Subject: [PATCH] Create 6.0.0 release --- Cargo.lock | 6 +++--- README.md | 4 ++-- docs/installation.md | 4 ++-- docs/manual/hurl.1 | 2 +- docs/manual/hurlfmt.1 | 2 +- packages/hurl/Cargo.toml | 4 ++-- packages/hurl/README.md | 4 ++-- packages/hurl_core/Cargo.toml | 2 +- packages/hurlfmt/Cargo.toml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 399e86964b6..c6deb88dda7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -506,7 +506,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hurl" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" dependencies = [ "base64", "brotli", @@ -540,7 +540,7 @@ dependencies = [ [[package]] name = "hurl_core" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" dependencies = [ "colored", "libxml", @@ -549,7 +549,7 @@ dependencies = [ [[package]] name = "hurlfmt" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" dependencies = [ "base64", "clap", diff --git a/README.md b/README.md index f6132f0750e..db634545311 100644 --- a/README.md +++ b/README.md @@ -1356,7 +1356,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz | tar xvz -C $INSTALL_DIR $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH ``` @@ -1366,7 +1366,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb $ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb ``` diff --git a/docs/installation.md b/docs/installation.md index 3b3df09b6f8..95684bd3e95 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -8,7 +8,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz | tar xvz -C $INSTALL_DIR $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH ``` @@ -18,7 +18,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb $ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb ``` diff --git a/docs/manual/hurl.1 b/docs/manual/hurl.1 index 962d282a8c7..d11ca697377 100644 --- a/docs/manual/hurl.1 +++ b/docs/manual/hurl.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "03 Dec 2024" "hurl 6.0.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "04 Dec 2024" "hurl 6.0.0" " Hurl Manual" .SH NAME hurl - run and test HTTP requests. diff --git a/docs/manual/hurlfmt.1 b/docs/manual/hurlfmt.1 index 53c1b5acff5..244926b795b 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "03 Dec 2024" "hurl 6.0.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "04 Dec 2024" "hurl 6.0.0" " Hurl Manual" .SH NAME hurlfmt - format Hurl files diff --git a/packages/hurl/Cargo.toml b/packages/hurl/Cargo.toml index 304e35f29ca..1cbf4021f08 100644 --- a/packages/hurl/Cargo.toml +++ b/packages/hurl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] edition = "2021" license = "Apache-2.0" @@ -29,7 +29,7 @@ encoding = "0.2.33" glob = "0.3.1" hex = "0.4.3" hex-literal = "0.4.1" -hurl_core = { version = "6.0.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "6.0.0", path = "../hurl_core" } libflate = "2.1.0" libxml = "0.3.3" md5 = "0.7.0" diff --git a/packages/hurl/README.md b/packages/hurl/README.md index 2a091a9d0dd..354acff480d 100644 --- a/packages/hurl/README.md +++ b/packages/hurl/README.md @@ -1356,7 +1356,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz | tar xvz -C $INSTALL_DIR $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH ``` @@ -1366,7 +1366,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=5.0.1 +$ VERSION=6.0.0 $ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb $ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb ``` diff --git a/packages/hurl_core/Cargo.toml b/packages/hurl_core/Cargo.toml index 6114d6ec633..9a100ec8c9d 100644 --- a/packages/hurl_core/Cargo.toml +++ b/packages/hurl_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl_core" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] edition = "2021" license = "Apache-2.0" diff --git a/packages/hurlfmt/Cargo.toml b/packages/hurlfmt/Cargo.toml index 14b5d6c8037..d03732bc864 100644 --- a/packages/hurlfmt/Cargo.toml +++ b/packages/hurlfmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurlfmt" -version = "6.0.0-SNAPSHOT" +version = "6.0.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] edition = "2021" license = "Apache-2.0" @@ -13,7 +13,7 @@ rust-version = "1.78.0" [dependencies] base64 = "0.22.1" clap = { version = "4.5.22", features = ["cargo", "wrap_help"] } -hurl_core = { version = "6.0.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "6.0.0", path = "../hurl_core" } regex = "1.11.1" [dev-dependencies]