diff --git a/.github/workflows/check_guides.sh b/.github/workflows/check_guides.sh index 2512554..c2f3b3b 100755 --- a/.github/workflows/check_guides.sh +++ b/.github/workflows/check_guides.sh @@ -19,7 +19,7 @@ EOF fi if [ $value = stable ]; then cat >> "$value/Cargo.toml" <<-EOF - hyper = { version = "1.0.0-rc.2", features = ["full"] } + hyper = { version = "1.0.0-rc.3", features = ["full"] } tokio = { version = "1", features = ["full"] } http-body-util = "0.1.0-rc.2" EOF diff --git a/_config.yml b/_config.yml index d494421..3c4d173 100644 --- a/_config.yml +++ b/_config.yml @@ -53,7 +53,7 @@ relative_links: plugins: - jekyll-redirect-from -docs_url: https://docs.rs/hyper/1.0.0-rc.2 +docs_url: https://docs.rs/hyper/1.0.0-rc.3 examples_url: https://github.com/hyperium/hyper/tree/master/examples http_body_util_url: https://docs.rs/http-body-util/0.1.0-rc.2 hyper_tls_url: https://docs.rs/hyper-tls/* diff --git a/_stable/client/basic.md b/_stable/client/basic.md index 1b90655..2a38c31 100644 --- a/_stable/client/basic.md +++ b/_stable/client/basic.md @@ -11,7 +11,7 @@ Let's tell Cargo about our dependencies by having this in the Cargo.toml. ```toml [dependencies] -hyper = { version = "1.0.0-rc.2", features = ["full"] } +hyper = { version = "1.0.0-rc.3", features = ["full"] } tokio = { version = "1", features = ["full"] } http-body-util = "0.1.0-rc.2" ``` diff --git a/_stable/index.md b/_stable/index.md index ebed969..60083ed 100644 --- a/_stable/index.md +++ b/_stable/index.md @@ -13,7 +13,7 @@ You can start using it by first adding it to your `Cargo.toml`: ```toml [dependencies] -hyper = { version = "1.0.0-rc.2", features = ["full"] } +hyper = { version = "1.0.0-rc.3", features = ["full"] } ``` - If building a web server, continue with the [Server guide][]. diff --git a/_stable/server/hello-world.md b/_stable/server/hello-world.md index 7133431..cc2e8ea 100644 --- a/_stable/server/hello-world.md +++ b/_stable/server/hello-world.md @@ -9,7 +9,7 @@ First we need to declare our dependencies, let's add the following to our `Cargo ```toml [dependencies] -hyper = { version = "1.0.0-rc.2", features = ["full"] } +hyper = { version = "1.0.0-rc.3", features = ["full"] } tokio = { version = "1", features = ["full"] } http-body-util = "0.1.0-rc.2" ```