Skip to content

Commit fdf87b6

Browse files
committed
v0.3.0
1 parent ffefea0 commit fdf87b6

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## v0.3.0 (January 19, 2021)
2+
3+
- **Features**:
4+
- Add TLS client authentication support.
5+
- Add TLS OCSP stapling support.
6+
- Add `From<Reject>` for `Rejection`.
7+
- Add `close_frame` accessor to `ws::Message`.
8+
- **Changes**:
9+
- Update to Tokio v1.
10+
- Update to Bytes v1.
11+
- Update to hyper v0.14.
12+
- Rework `sse` filter to be more like `ws`, with a single `Event` type and builder.
13+
- Change `cookie` filter to extract a generic `FromStr` value.
14+
15+
116
### v0.2.5 (August 31, 2020)
217

318
- **Features**:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "warp"
3-
version = "0.2.5" # don't forget to update html_root_url
3+
version = "0.3.0" # don't forget to update html_root_url
44
description = "serve the web at warp speeds"
55
authors = ["Sean McArthur <[email protected]>"]
66
license = "MIT"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Since it builds on top of [hyper](https://hyper.rs), you automatically get:
3636
Add warp and Tokio to your dependencies:
3737

3838
```toml
39-
tokio = { version = "0.2", features = ["full"] }
40-
warp = "0.2"
39+
tokio = { version = "1", features = ["full"] }
40+
warp = "0.3"
4141
```
4242

4343
And then get started in your `main.rs`:

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/warp/0.2.5")]
1+
#![doc(html_root_url = "https://docs.rs/warp/0.3.0")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![cfg_attr(test, deny(warnings))]

0 commit comments

Comments
 (0)