Skip to content

Commit b253046

Browse files
committed
Create 6.0.0 release
1 parent a7eb250 commit b253046

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
@@ -1356,7 +1356,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:
13561356

13571357
```shell
13581358
$ INSTALL_DIR=/tmp
1359-
$ VERSION=5.0.1
1359+
$ VERSION=6.0.0
13601360
$ 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
13611361
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13621362
```
@@ -1366,7 +1366,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13661366
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
13671367

13681368
```shell
1369-
$ VERSION=5.0.1
1369+
$ VERSION=6.0.0
13701370
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
13711371
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
13721372
```

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=5.0.1
11+
$ VERSION=6.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=5.0.1
21+
$ VERSION=6.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 "03 Dec 2024" "hurl 6.0.0-SNAPSHOT" " Hurl Manual"
1+
.TH hurl 1 "04 Dec 2024" "hurl 6.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 "03 Dec 2024" "hurl 6.0.0-SNAPSHOT" " Hurl Manual"
1+
.TH hurl 1 "04 Dec 2024" "hurl 6.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 = "6.0.0-SNAPSHOT"
3+
version = "6.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"
@@ -29,7 +29,7 @@ encoding = "0.2.33"
2929
glob = "0.3.1"
3030
hex = "0.4.3"
3131
hex-literal = "0.4.1"
32-
hurl_core = { version = "6.0.0-SNAPSHOT", path = "../hurl_core" }
32+
hurl_core = { version = "6.0.0", path = "../hurl_core" }
3333
libflate = "2.1.0"
3434
libxml = "0.3.3"
3535
md5 = "0.7.0"

packages/hurl/README.md

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

13571357
```shell
13581358
$ INSTALL_DIR=/tmp
1359-
$ VERSION=5.0.1
1359+
$ VERSION=6.0.0
13601360
$ 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
13611361
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13621362
```
@@ -1366,7 +1366,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
13661366
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
13671367

13681368
```shell
1369-
$ VERSION=5.0.1
1369+
$ VERSION=6.0.0
13701370
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
13711371
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
13721372
```

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 = "6.0.0-SNAPSHOT"
3+
version = "6.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 = "6.0.0-SNAPSHOT"
3+
version = "6.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.22", features = ["cargo", "wrap_help"] }
16-
hurl_core = { version = "6.0.0-SNAPSHOT", path = "../hurl_core" }
16+
hurl_core = { version = "6.0.0", path = "../hurl_core" }
1717
regex = "1.11.1"
1818

1919
[dev-dependencies]

0 commit comments

Comments
 (0)