From 6b4f8d2e82990a8ef8f2c51e53adb39d86ddfa92 Mon Sep 17 00:00:00 2001 From: hurl-bot Date: Wed, 28 Aug 2024 14:10:43 +0000 Subject: [PATCH] Create 5.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 34fd0801380..93dd6ea804a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -510,7 +510,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hurl" -version = "5.0.0-SNAPSHOT" +version = "5.0.0" dependencies = [ "base64", "brotli", @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "hurl_core" -version = "5.0.0-SNAPSHOT" +version = "5.0.0" dependencies = [ "colored", "float-cmp", @@ -555,7 +555,7 @@ dependencies = [ [[package]] name = "hurlfmt" -version = "5.0.0-SNAPSHOT" +version = "5.0.0" dependencies = [ "base64", "clap", diff --git a/README.md b/README.md index 2d5b6905a41..11e55a2365d 100644 --- a/README.md +++ b/README.md @@ -1326,7 +1326,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=4.3.0 +$ VERSION=5.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 ``` @@ -1336,7 +1336,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=4.3.0 +$ VERSION=5.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 2f4d9c46c47..966e1270570 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=4.3.0 +$ VERSION=5.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=4.3.0 +$ VERSION=5.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 75f4784364b..8fff66cb325 100644 --- a/docs/manual/hurl.1 +++ b/docs/manual/hurl.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "28 Aug 2024" "hurl 5.0.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "28 Aug 2024" "hurl 5.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 725b4409981..0d8e2101091 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "28 Aug 2024" "hurl 5.0.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "28 Aug 2024" "hurl 5.0.0" " Hurl Manual" .SH NAME hurlfmt - format Hurl files diff --git a/packages/hurl/Cargo.toml b/packages/hurl/Cargo.toml index 957c8eec71e..d1d3612a3fb 100644 --- a/packages/hurl/Cargo.toml +++ b/packages/hurl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl" -version = "5.0.0-SNAPSHOT" +version = "5.0.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] edition = "2021" license = "Apache-2.0" @@ -28,7 +28,7 @@ float-cmp = "0.9.0" glob = "0.3.1" hex = "0.4.3" hex-literal = "0.4.1" -hurl_core = { version = "5.0.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "5.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 6551b9a4459..a336126b3d4 100644 --- a/packages/hurl/README.md +++ b/packages/hurl/README.md @@ -1326,7 +1326,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=4.3.0 +$ VERSION=5.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 ``` @@ -1336,7 +1336,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=4.3.0 +$ VERSION=5.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 836a65b4de9..0666bf5294b 100644 --- a/packages/hurl_core/Cargo.toml +++ b/packages/hurl_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl_core" -version = "5.0.0-SNAPSHOT" +version = "5.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 230a77e9e29..49e2dffe00b 100644 --- a/packages/hurlfmt/Cargo.toml +++ b/packages/hurlfmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurlfmt" -version = "5.0.0-SNAPSHOT" +version = "5.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.16", features = ["cargo", "wrap_help"] } -hurl_core = { version = "5.0.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "5.0.0", path = "../hurl_core" } regex = "1.10.6" [dev-dependencies]