mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 02:52:34 +03:00
Create 2.0.0 release
This commit is contained in:
parent
3ff999dff5
commit
e7e00c632b
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -497,7 +497,7 @@ checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
|
||||
|
||||
[[package]]
|
||||
name = "hurl"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64",
|
||||
@ -531,7 +531,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hurl_core"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"float-cmp",
|
||||
"regex",
|
||||
@ -540,7 +540,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hurlfmt"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64",
|
||||
|
@ -850,7 +850,7 @@ HTTP 200
|
||||
will follow a redirection only for the second entry.
|
||||
|
||||
| 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="#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 Output.<br> |
|
||||
@ -901,7 +901,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.
|
||||
|
||||
| Variable | Description |
|
||||
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `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> |
|
||||
| `all_proxy [protocol://]<host>[:port]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
||||
@ -912,7 +912,7 @@ Using an environment variable to set the proxy has the same effect as using the
|
||||
## Exit Codes
|
||||
|
||||
| Value | Description |
|
||||
|-------|---------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `1` | Failed to parse command-line options.<br> |
|
||||
| `2` | Input File Parsing Error.<br> |
|
||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||
|
@ -146,7 +146,7 @@ HTTP 200
|
||||
will follow a redirection only for the second entry.
|
||||
|
||||
| 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="#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 Output.<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.
|
||||
|
||||
| Variable | Description |
|
||||
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `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> |
|
||||
| `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
|
||||
|
||||
| Value | Description |
|
||||
|-------|---------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `1` | Failed to parse command-line options.<br> |
|
||||
| `2` | Input File Parsing Error.<br> |
|
||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH hurl 1 "24 Jan 2023" "hurl 2.0.0-SNAPSHOT" " Hurl Manual"
|
||||
.TH hurl 1 "25 Jan 2023" "hurl 2.0.0" " Hurl Manual"
|
||||
.SH NAME
|
||||
|
||||
hurl - run and test HTTP requests.
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH hurl 1 "24 Jan 2023" "hurl 2.0.0-SNAPSHOT" " Hurl Manual"
|
||||
.TH hurl 1 "25 Jan 2023" "hurl 2.0.0" " Hurl Manual"
|
||||
.SH NAME
|
||||
|
||||
hurlfmt - format Hurl files
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hurl"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
|
||||
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.3.4"
|
||||
hurl_core = { version = "2.0.0-SNAPSHOT", path = "../hurl_core" }
|
||||
hurl_core = { version = "2.0.0", path = "../hurl_core" }
|
||||
indexmap = "1.9.2"
|
||||
libflate = "1.2.0"
|
||||
libxml = "0.3.1"
|
||||
|
@ -850,7 +850,7 @@ HTTP 200
|
||||
will follow a redirection only for the second entry.
|
||||
|
||||
| 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="#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 Output.<br> |
|
||||
@ -901,7 +901,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.
|
||||
|
||||
| Variable | Description |
|
||||
|--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `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> |
|
||||
| `all_proxy [protocol://]<host>[:port]` | Sets the proxy server to use if no protocol-specific proxy is set.<br> |
|
||||
@ -912,7 +912,7 @@ Using an environment variable to set the proxy has the same effect as using the
|
||||
## Exit Codes
|
||||
|
||||
| Value | Description |
|
||||
|-------|---------------------------------------------------------|
|
||||
| --- | --- |
|
||||
| `1` | Failed to parse command-line options.<br> |
|
||||
| `2` | Input File Parsing Error.<br> |
|
||||
| `3` | Runtime error (such as failure to connect to host).<br> |
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hurl_core"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hurlfmt"
|
||||
version = "2.0.0-SNAPSHOT"
|
||||
version = "2.0.0"
|
||||
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
@ -18,7 +18,7 @@ atty = "0.2.14"
|
||||
base64 = "0.21.0"
|
||||
clap = { version = "4.1.4", features = ["cargo", "wrap_help"] }
|
||||
colored = "2.0.0"
|
||||
hurl_core = { version = "2.0.0-SNAPSHOT", path = "../hurl_core" }
|
||||
hurl_core = { version = "2.0.0", path = "../hurl_core" }
|
||||
regex = "1.7.1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
Loading…
Reference in New Issue
Block a user