diff --git a/Cargo.lock b/Cargo.lock index 6309ae98e6c..c245b1221cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -510,7 +510,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hurl" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" dependencies = [ "base64", "brotli", @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "hurl_core" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" dependencies = [ "colored", "float-cmp", @@ -555,7 +555,7 @@ dependencies = [ [[package]] name = "hurlfmt" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" dependencies = [ "base64", "clap", diff --git a/README.md b/README.md index 11e55a2365d..4393cce021d 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=5.0.0 +$ VERSION=5.0.1 $ 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=5.0.0 +$ VERSION=5.0.1 $ 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 966e1270570..3b3df09b6f8 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.0 +$ VERSION=5.0.1 $ 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.0 +$ VERSION=5.0.1 $ 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 76312c5b3e3..ab5509ead13 100644 --- a/docs/manual/hurl.1 +++ b/docs/manual/hurl.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "29 Aug 2024" "hurl 5.0.1-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "30 Aug 2024" "hurl 5.0.1" " Hurl Manual" .SH NAME hurl - run and test HTTP requests. diff --git a/docs/manual/hurlfmt.1 b/docs/manual/hurlfmt.1 index 79ca83acfb0..86610b98984 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "29 Aug 2024" "hurl 5.0.1-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "30 Aug 2024" "hurl 5.0.1" " Hurl Manual" .SH NAME hurlfmt - format Hurl files diff --git a/packages/hurl/Cargo.toml b/packages/hurl/Cargo.toml index 8168c3899f5..eb4bc0aff2a 100644 --- a/packages/hurl/Cargo.toml +++ b/packages/hurl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" 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.1-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "5.0.1", 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 a336126b3d4..ff518b18995 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=5.0.0 +$ VERSION=5.0.1 $ 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=5.0.0 +$ VERSION=5.0.1 $ 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 0cb370a55c4..879fe6b15ff 100644 --- a/packages/hurl_core/Cargo.toml +++ b/packages/hurl_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl_core" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" 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 18cdf1fe7b6..4bdc865abd6 100644 --- a/packages/hurlfmt/Cargo.toml +++ b/packages/hurlfmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurlfmt" -version = "5.0.1-SNAPSHOT" +version = "5.0.1" 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.1-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "5.0.1", path = "../hurl_core" } regex = "1.10.6" [dev-dependencies]