Skip to content

Commit 6b4f8d2

Browse files
committed
Create 5.0.0 release
1 parent e4c1c02 commit 6b4f8d2

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:
13261326

13271327
```shell
13281328
$ INSTALL_DIR=/tmp
1329-
$ VERSION=4.3.0
1329+
$ VERSION=5.0.0
13301330
$ 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
13311331
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13321332
```
@@ -1336,7 +1336,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13361336
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
13371337

13381338
```shell
1339-
$ VERSION=4.3.0
1339+
$ VERSION=5.0.0
13401340
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
13411341
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
13421342
```

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:
88

99
```shell
1010
$ INSTALL_DIR=/tmp
11-
$ VERSION=4.3.0
11+
$ VERSION=5.0.0
1212
$ 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
1313
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
1414
```
@@ -18,7 +18,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
1818
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
1919

2020
```shell
21-
$ VERSION=4.3.0
21+
$ VERSION=5.0.0
2222
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
2323
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
2424
```

docs/manual/hurl.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH hurl 1 "28 Aug 2024" "hurl 5.0.0-SNAPSHOT" " Hurl Manual"
1+
.TH hurl 1 "28 Aug 2024" "hurl 5.0.0" " Hurl Manual"
22
.SH NAME
33

44
hurl - run and test HTTP requests.

docs/manual/hurlfmt.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH hurl 1 "28 Aug 2024" "hurl 5.0.0-SNAPSHOT" " Hurl Manual"
1+
.TH hurl 1 "28 Aug 2024" "hurl 5.0.0" " Hurl Manual"
22
.SH NAME
33

44
hurlfmt - format Hurl files

packages/hurl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hurl"
3-
version = "5.0.0-SNAPSHOT"
3+
version = "5.0.0"
44
authors = ["Fabrice Reix <[email protected]>", "Jean-Christophe Amiel <[email protected]>", "Filipe Pinto <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -28,7 +28,7 @@ float-cmp = "0.9.0"
2828
glob = "0.3.1"
2929
hex = "0.4.3"
3030
hex-literal = "0.4.1"
31-
hurl_core = { version = "5.0.0-SNAPSHOT", path = "../hurl_core" }
31+
hurl_core = { version = "5.0.0", path = "../hurl_core" }
3232
libflate = "2.1.0"
3333
libxml = "0.3.3"
3434
md5 = "0.7.0"

packages/hurl/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:
13261326

13271327
```shell
13281328
$ INSTALL_DIR=/tmp
1329-
$ VERSION=4.3.0
1329+
$ VERSION=5.0.0
13301330
$ 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
13311331
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13321332
```
@@ -1336,7 +1336,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13361336
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
13371337

13381338
```shell
1339-
$ VERSION=4.3.0
1339+
$ VERSION=5.0.0
13401340
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
13411341
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
13421342
```

packages/hurl_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hurl_core"
3-
version = "5.0.0-SNAPSHOT"
3+
version = "5.0.0"
44
authors = ["Fabrice Reix <[email protected]>", "Jean-Christophe Amiel <[email protected]>", "Filipe Pinto <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

packages/hurlfmt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hurlfmt"
3-
version = "5.0.0-SNAPSHOT"
3+
version = "5.0.0"
44
authors = ["Fabrice Reix <[email protected]>", "Jean-Christophe Amiel <[email protected]>", "Filipe Pinto <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -13,7 +13,7 @@ rust-version = "1.78.0"
1313
[dependencies]
1414
base64 = "0.22.1"
1515
clap = { version = "4.5.16", features = ["cargo", "wrap_help"] }
16-
hurl_core = { version = "5.0.0-SNAPSHOT", path = "../hurl_core" }
16+
hurl_core = { version = "5.0.0", path = "../hurl_core" }
1717
regex = "1.10.6"
1818

1919
[dev-dependencies]

0 commit comments

Comments
 (0)