From 733dd76b4ad17d7ff1df1857011ad3b8d9eed7f8 Mon Sep 17 00:00:00 2001 From: hurl-bot Date: Tue, 23 Apr 2024 11:50:35 +0000 Subject: [PATCH] Create 4.3.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 cf98a7e87..d5de217e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -493,7 +493,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hurl" -version = "4.3.0-SNAPSHOT" +version = "4.3.0" dependencies = [ "base64", "brotli", @@ -527,7 +527,7 @@ dependencies = [ [[package]] name = "hurl_core" -version = "4.3.0-SNAPSHOT" +version = "4.3.0" dependencies = [ "float-cmp", "libxml", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "hurlfmt" -version = "4.3.0-SNAPSHOT" +version = "4.3.0" dependencies = [ "base64", "clap", diff --git a/README.md b/README.md index 624e76f71..88dc5c2dd 100644 --- a/README.md +++ b/README.md @@ -1279,7 +1279,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=4.2.0 +$ VERSION=4.3.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:$PATH ``` @@ -1289,7 +1289,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=4.2.0 +$ VERSION=4.3.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 2c3b77a34..6f52221f0 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.2.0 +$ VERSION=4.3.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:$PATH ``` @@ -18,7 +18,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=4.2.0 +$ VERSION=4.3.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 67d0f416a..be715f789 100644 --- a/docs/manual/hurl.1 +++ b/docs/manual/hurl.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "17 Apr 2024" "hurl 4.3.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "23 Apr 2024" "hurl 4.3.0" " Hurl Manual" .SH NAME hurl - run and test HTTP requests. diff --git a/docs/manual/hurlfmt.1 b/docs/manual/hurlfmt.1 index 838266ea2..01e4c0240 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "17 Apr 2024" "hurl 4.3.0-SNAPSHOT" " Hurl Manual" +.TH hurl 1 "23 Apr 2024" "hurl 4.3.0" " Hurl Manual" .SH NAME hurlfmt - format Hurl files diff --git a/packages/hurl/Cargo.toml b/packages/hurl/Cargo.toml index df908b6f5..f0658da9b 100644 --- a/packages/hurl/Cargo.toml +++ b/packages/hurl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl" -version = "4.3.0-SNAPSHOT" +version = "4.3.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] 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.4.1" -hurl_core = { version = "4.3.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "4.3.0", path = "../hurl_core" } libflate = "2.0.0" libxml = "0.3.3" md5 = "0.7.0" diff --git a/packages/hurl/README.md b/packages/hurl/README.md index 1b96e95ae..3e551ee79 100644 --- a/packages/hurl/README.md +++ b/packages/hurl/README.md @@ -1271,7 +1271,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=4.2.0 +$ VERSION=4.3.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:$PATH ``` @@ -1281,7 +1281,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=4.2.0 +$ VERSION=4.3.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 bc815667b..5576b13f9 100644 --- a/packages/hurl_core/Cargo.toml +++ b/packages/hurl_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurl_core" -version = "4.3.0-SNAPSHOT" +version = "4.3.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 21dd8d6c2..2997187fb 100644 --- a/packages/hurlfmt/Cargo.toml +++ b/packages/hurlfmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurlfmt" -version = "4.3.0-SNAPSHOT" +version = "4.3.0" authors = ["Fabrice Reix ", "Jean-Christophe Amiel ", "Filipe Pinto "] edition = "2021" license = "Apache-2.0" @@ -14,7 +14,7 @@ rust-version = "1.73.0" base64 = "0.22.0" clap = { version = "4.5.4", features = ["cargo", "wrap_help"] } colored = "2.1.0" -hurl_core = { version = "4.3.0-SNAPSHOT", path = "../hurl_core" } +hurl_core = { version = "4.3.0", path = "../hurl_core" } regex = "1.10.4" [dev-dependencies]