Skip to content

Commit 05f4d54

Browse files
authored
chore: v1.0.0-rc.3 (#88)
1 parent 1a085ad commit 05f4d54

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/check_guides.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ EOF
1919
fi
2020
if [ $value = stable ]; then
2121
cat >> "$value/Cargo.toml" <<-EOF
22-
hyper = { version = "1.0.0-rc.2", features = ["full"] }
22+
hyper = { version = "1.0.0-rc.3", features = ["full"] }
2323
tokio = { version = "1", features = ["full"] }
2424
http-body-util = "0.1.0-rc.2"
2525
EOF

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ relative_links:
5353
plugins:
5454
- jekyll-redirect-from
5555

56-
docs_url: https://docs.rs/hyper/1.0.0-rc.2
56+
docs_url: https://docs.rs/hyper/1.0.0-rc.3
5757
examples_url: https://github.com/hyperium/hyper/tree/master/examples
5858
http_body_util_url: https://docs.rs/http-body-util/0.1.0-rc.2
5959
hyper_tls_url: https://docs.rs/hyper-tls/*

_stable/client/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Let's tell Cargo about our dependencies by having this in the Cargo.toml.
1111

1212
```toml
1313
[dependencies]
14-
hyper = { version = "1.0.0-rc.2", features = ["full"] }
14+
hyper = { version = "1.0.0-rc.3", features = ["full"] }
1515
tokio = { version = "1", features = ["full"] }
1616
http-body-util = "0.1.0-rc.2"
1717
```

_stable/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can start using it by first adding it to your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
hyper = { version = "1.0.0-rc.2", features = ["full"] }
16+
hyper = { version = "1.0.0-rc.3", features = ["full"] }
1717
```
1818

1919
- If building a web server, continue with the [Server guide][].

_stable/server/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ First we need to declare our dependencies, let's add the following to our `Cargo
99

1010
```toml
1111
[dependencies]
12-
hyper = { version = "1.0.0-rc.2", features = ["full"] }
12+
hyper = { version = "1.0.0-rc.3", features = ["full"] }
1313
tokio = { version = "1", features = ["full"] }
1414
http-body-util = "0.1.0-rc.2"
1515
```

0 commit comments

Comments
 (0)