mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 00:22:10 +03:00
Update installation with 2.0.1 links.
This commit is contained in:
parent
4f747c946b
commit
176e83e83c
32
README.md
32
README.md
@ -849,7 +849,7 @@ HTTP 200
|
|||||||
will follow a redirection only for the second entry.
|
will follow a redirection only for the second entry.
|
||||||
|
|
||||||
| Option | Description |
|
| Option | Description |
|
||||||
| --- | --- |
|
|------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
||||||
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
||||||
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
||||||
@ -900,7 +900,7 @@ Environment variables can only be specified in lowercase.
|
|||||||
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
| --- | --- |
|
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
||||||
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
||||||
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
||||||
@ -911,7 +911,7 @@ Using an environment variable to set the proxy has the same effect as using the
|
|||||||
## Exit Codes
|
## Exit Codes
|
||||||
|
|
||||||
| Value | Description |
|
| Value | Description |
|
||||||
| --- | --- |
|
|-------|---------------------------------------------------------|
|
||||||
| `1` | Failed to parse command-line options.<br> |
|
| `1` | Failed to parse command-line options.<br> |
|
||||||
| `2` | Input File Parsing Error.<br> |
|
| `2` | Input File Parsing Error.<br> |
|
||||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||||
@ -932,12 +932,12 @@ curl(1) hurlfmt(1)
|
|||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-linux.tar.gz]:
|
Precompiled binary is available at [hurl-2.0.1-x86_64-linux.tar.gz]:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ INSTALL_DIR=/tmp
|
$ INSTALL_DIR=/tmp
|
||||||
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
||||||
$ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
$ export PATH=$INSTALL_DIR/hurl-2.0.1:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Debian / Ubuntu
|
#### Debian / Ubuntu
|
||||||
@ -945,8 +945,8 @@ $ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
|||||||
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl_2.0.0_amd64.deb
|
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl_2.0.1_amd64.deb
|
||||||
$ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
$ sudo apt update && apt install ./hurl_2.0.1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Arch Linux / Manjaro
|
#### Arch Linux / Manjaro
|
||||||
@ -959,7 +959,7 @@ $ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
|||||||
|
|
||||||
### macOS
|
### macOS
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.0-arm64-macos.tar.gz] for ARM CPUS.
|
Precompiled binary is available at [hurl-2.0.1-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.1-arm64-macos.tar.gz] for ARM CPUS.
|
||||||
|
|
||||||
#### Homebrew
|
#### Homebrew
|
||||||
|
|
||||||
@ -983,11 +983,11 @@ $ sudo pkg install hurl
|
|||||||
|
|
||||||
#### Zip File
|
#### Zip File
|
||||||
|
|
||||||
Hurl can be installed from a standalone zip file [hurl-2.0.0-win64.zip]. You will need to update your `PATH` variable.
|
Hurl can be installed from a standalone zip file [hurl-2.0.1-win64.zip]. You will need to update your `PATH` variable.
|
||||||
|
|
||||||
#### Installer
|
#### Installer
|
||||||
|
|
||||||
An installer [hurl-2.0.0-win64-installer.exe] is also available.
|
An installer [hurl-2.0.1-win64-installer.exe] is also available.
|
||||||
|
|
||||||
#### Chocolatey
|
#### Chocolatey
|
||||||
|
|
||||||
@ -1113,11 +1113,11 @@ Please follow the [contrib on Windows section].
|
|||||||
[`--test` option]: https://hurl.dev/docs/manual.html#test
|
[`--test` option]: https://hurl.dev/docs/manual.html#test
|
||||||
[Hurl templates]: https://hurl.dev/docs/templates.html
|
[Hurl templates]: https://hurl.dev/docs/templates.html
|
||||||
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
||||||
[hurl-2.0.0-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64.zip
|
[hurl-2.0.1-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64.zip
|
||||||
[hurl-2.0.0-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64-installer.exe
|
[hurl-2.0.1-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64-installer.exe
|
||||||
[hurl-2.0.0-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-macos.tar.gz
|
[hurl-2.0.1-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-macos.tar.gz
|
||||||
[hurl-2.0.0-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-arm64-macos.tar.gz
|
[hurl-2.0.1-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-arm64-macos.tar.gz
|
||||||
[hurl-2.0.0-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz
|
[hurl-2.0.1-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz
|
||||||
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
||||||
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
||||||
[install]: https://www.rust-lang.org/tools/install
|
[install]: https://www.rust-lang.org/tools/install
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-linux.tar.gz]:
|
Precompiled binary is available at [hurl-2.0.1-x86_64-linux.tar.gz]:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ INSTALL_DIR=/tmp
|
$ INSTALL_DIR=/tmp
|
||||||
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
||||||
$ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
$ export PATH=$INSTALL_DIR/hurl-2.0.1:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Debian / Ubuntu
|
#### Debian / Ubuntu
|
||||||
@ -17,8 +17,8 @@ $ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
|||||||
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl_2.0.0_amd64.deb
|
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl_2.0.1_amd64.deb
|
||||||
$ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
$ sudo apt update && apt install ./hurl_2.0.1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Arch Linux / Manjaro
|
#### Arch Linux / Manjaro
|
||||||
@ -31,7 +31,7 @@ $ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
|||||||
|
|
||||||
### macOS
|
### macOS
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.0-arm64-macos.tar.gz] for ARM CPUS.
|
Precompiled binary is available at [hurl-2.0.1-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.1-arm64-macos.tar.gz] for ARM CPUS.
|
||||||
|
|
||||||
#### Homebrew
|
#### Homebrew
|
||||||
|
|
||||||
@ -55,11 +55,11 @@ $ sudo pkg install hurl
|
|||||||
|
|
||||||
#### Zip File
|
#### Zip File
|
||||||
|
|
||||||
Hurl can be installed from a standalone zip file [hurl-2.0.0-win64.zip]. You will need to update your `PATH` variable.
|
Hurl can be installed from a standalone zip file [hurl-2.0.1-win64.zip]. You will need to update your `PATH` variable.
|
||||||
|
|
||||||
#### Installer
|
#### Installer
|
||||||
|
|
||||||
An installer [hurl-2.0.0-win64-installer.exe] is also available.
|
An installer [hurl-2.0.1-win64-installer.exe] is also available.
|
||||||
|
|
||||||
#### Chocolatey
|
#### Chocolatey
|
||||||
|
|
||||||
@ -156,11 +156,11 @@ $ ./target/release/hurl --version
|
|||||||
Please follow the [contrib on Windows section].
|
Please follow the [contrib on Windows section].
|
||||||
|
|
||||||
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
||||||
[hurl-2.0.0-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64.zip
|
[hurl-2.0.1-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64.zip
|
||||||
[hurl-2.0.0-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64-installer.exe
|
[hurl-2.0.1-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64-installer.exe
|
||||||
[hurl-2.0.0-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-macos.tar.gz
|
[hurl-2.0.1-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-macos.tar.gz
|
||||||
[hurl-2.0.0-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-arm64-macos.tar.gz
|
[hurl-2.0.1-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-arm64-macos.tar.gz
|
||||||
[hurl-2.0.0-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz
|
[hurl-2.0.1-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz
|
||||||
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
||||||
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
||||||
[install]: https://www.rust-lang.org/tools/install
|
[install]: https://www.rust-lang.org/tools/install
|
||||||
|
@ -146,7 +146,7 @@ HTTP 200
|
|||||||
will follow a redirection only for the second entry.
|
will follow a redirection only for the second entry.
|
||||||
|
|
||||||
| Option | Description |
|
| Option | Description |
|
||||||
| --- | --- |
|
|------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
||||||
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
||||||
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
||||||
@ -197,7 +197,7 @@ Environment variables can only be specified in lowercase.
|
|||||||
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
| --- | --- |
|
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
||||||
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
||||||
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
||||||
@ -208,7 +208,7 @@ Using an environment variable to set the proxy has the same effect as using the
|
|||||||
## Exit Codes
|
## Exit Codes
|
||||||
|
|
||||||
| Value | Description |
|
| Value | Description |
|
||||||
| --- | --- |
|
|-------|---------------------------------------------------------|
|
||||||
| `1` | Failed to parse command-line options.<br> |
|
| `1` | Failed to parse command-line options.<br> |
|
||||||
| `2` | Input File Parsing Error.<br> |
|
| `2` | Input File Parsing Error.<br> |
|
||||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||||
|
@ -849,7 +849,7 @@ HTTP 200
|
|||||||
will follow a redirection only for the second entry.
|
will follow a redirection only for the second entry.
|
||||||
|
|
||||||
| Option | Description |
|
| Option | Description |
|
||||||
| --- | --- |
|
|------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
| <a href="#cacert" id="cacert"><code>--cacert <FILE></code></a> | Specifies the certificate file for peer verification. The file may contain multiple CA certificates and must be in PEM format.<br>Normally Hurl is built to use a default file for this, so this option is typically used to alter that default file.<br> |
|
||||||
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
| <a href="#cert" id="cert"><code>-E, --cert <CERTIFICATE[:PASSWORD]></code></a> | Client certificate file and password.<br><br>See also [`--key`](#key).<br> |
|
||||||
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
| <a href="#color" id="color"><code>--color</code></a> | Colorize debug output (the HTTP response output is not colorized). <br> |
|
||||||
@ -900,7 +900,7 @@ Environment variables can only be specified in lowercase.
|
|||||||
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
Using an environment variable to set the proxy has the same effect as using the [`-x, --proxy`](#proxy) option.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
| --- | --- |
|
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
| `http_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTP.<br> |
|
||||||
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
| `https_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use for HTTPS.<br> |
|
||||||
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
| `all_proxy [PROTOCOL://]<HOST>[:PORT]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
||||||
@ -911,7 +911,7 @@ Using an environment variable to set the proxy has the same effect as using the
|
|||||||
## Exit Codes
|
## Exit Codes
|
||||||
|
|
||||||
| Value | Description |
|
| Value | Description |
|
||||||
| --- | --- |
|
|-------|---------------------------------------------------------|
|
||||||
| `1` | Failed to parse command-line options.<br> |
|
| `1` | Failed to parse command-line options.<br> |
|
||||||
| `2` | Input File Parsing Error.<br> |
|
| `2` | Input File Parsing Error.<br> |
|
||||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||||
@ -932,12 +932,12 @@ curl(1) hurlfmt(1)
|
|||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-linux.tar.gz]:
|
Precompiled binary is available at [hurl-2.0.1-x86_64-linux.tar.gz]:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ INSTALL_DIR=/tmp
|
$ INSTALL_DIR=/tmp
|
||||||
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
$ curl -sL https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
|
||||||
$ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
$ export PATH=$INSTALL_DIR/hurl-2.0.1:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Debian / Ubuntu
|
#### Debian / Ubuntu
|
||||||
@ -945,8 +945,8 @@ $ export PATH=$INSTALL_DIR/hurl-2.0.0:$PATH
|
|||||||
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl_2.0.0_amd64.deb
|
$ curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl_2.0.1_amd64.deb
|
||||||
$ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
$ sudo apt update && apt install ./hurl_2.0.1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Arch Linux / Manjaro
|
#### Arch Linux / Manjaro
|
||||||
@ -959,7 +959,7 @@ $ sudo apt update && apt install ./hurl_2.0.0_amd64.deb
|
|||||||
|
|
||||||
### macOS
|
### macOS
|
||||||
|
|
||||||
Precompiled binary is available at [hurl-2.0.0-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.0-arm64-macos.tar.gz] for ARM CPUS.
|
Precompiled binary is available at [hurl-2.0.1-x86_64-macos.tar.gz] for x86 CPUs and [hurl-2.0.1-arm64-macos.tar.gz] for ARM CPUS.
|
||||||
|
|
||||||
#### Homebrew
|
#### Homebrew
|
||||||
|
|
||||||
@ -983,11 +983,11 @@ $ sudo pkg install hurl
|
|||||||
|
|
||||||
#### Zip File
|
#### Zip File
|
||||||
|
|
||||||
Hurl can be installed from a standalone zip file [hurl-2.0.0-win64.zip]. You will need to update your `PATH` variable.
|
Hurl can be installed from a standalone zip file [hurl-2.0.1-win64.zip]. You will need to update your `PATH` variable.
|
||||||
|
|
||||||
#### Installer
|
#### Installer
|
||||||
|
|
||||||
An installer [hurl-2.0.0-win64-installer.exe] is also available.
|
An installer [hurl-2.0.1-win64-installer.exe] is also available.
|
||||||
|
|
||||||
#### Chocolatey
|
#### Chocolatey
|
||||||
|
|
||||||
@ -1113,11 +1113,11 @@ Please follow the [contrib on Windows section].
|
|||||||
[`--test` option]: https://hurl.dev/docs/manual.html#test
|
[`--test` option]: https://hurl.dev/docs/manual.html#test
|
||||||
[Hurl templates]: https://hurl.dev/docs/templates.html
|
[Hurl templates]: https://hurl.dev/docs/templates.html
|
||||||
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
[GitHub]: https://github.com/Orange-OpenSource/hurl
|
||||||
[hurl-2.0.0-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64.zip
|
[hurl-2.0.1-win64.zip]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64.zip
|
||||||
[hurl-2.0.0-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-win64-installer.exe
|
[hurl-2.0.1-win64-installer.exe]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-win64-installer.exe
|
||||||
[hurl-2.0.0-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-macos.tar.gz
|
[hurl-2.0.1-x86_64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-macos.tar.gz
|
||||||
[hurl-2.0.0-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-arm64-macos.tar.gz
|
[hurl-2.0.1-arm64-macos.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-arm64-macos.tar.gz
|
||||||
[hurl-2.0.0-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.0/hurl-2.0.0-x86_64-linux.tar.gz
|
[hurl-2.0.1-x86_64-linux.tar.gz]: https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz
|
||||||
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
[AUR]: https://wiki.archlinux.org/index.php/Arch_User_Repository
|
||||||
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
[`hurl-bin` package]: https://aur.archlinux.org/packages/hurl-bin/
|
||||||
[install]: https://www.rust-lang.org/tools/install
|
[install]: https://www.rust-lang.org/tools/install
|
||||||
|
Loading…
Reference in New Issue
Block a user