Skip to content

chore: v1.0.0-rc.3 #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check_guides.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion _stable/client/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand Down
2 changes: 1 addition & 1 deletion _stable/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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][].
Expand Down
2 changes: 1 addition & 1 deletion _stable/server/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand Down