Skip to content

Commit 4717cec

Browse files
committed
Release trpl 0.3
1 parent 3e9dc46 commit 4717cec

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

packages/trpl/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# CHANGELOG
22

3+
## 0.3.0
4+
5+
This is intended to be a backwards-compatible release.
6+
7+
- Added aliases of method names to better align with other async crates' terminology after tech
8+
review feedback, including:
9+
- `select` instead of `race`
10+
- `block_on` instead of `run`
11+
- Upgraded Rust, the edition, `ring`, and `quinn-proto`
12+
- Switched to `rustls`
13+
14+
15+
## 0.2.0
16+
17+
- Added `get`, `Response`, and `Html` to support more examples in chapter 17.
18+
319
## 0.1.0
420

521
Initial release! Adds support code for the first draft of the new async chapter of the book.

packages/trpl/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/trpl/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
[package]
22
name = "trpl"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
description = "A support crate for The Rust Programming Language book"
77
readme = "README.md"
88
repository = "https://github.com/rust-lang/book"
99
authors = ["Chris Krycho <[email protected]>"]
1010

11-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12-
1311
[dependencies]
1412
futures = "0.3"
1513
reqwest = { version = "0.12", default-features = false, features = [

0 commit comments

Comments
 (0)