Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Jan 19, 2021
1 parent ffefea0 commit fdf87b6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
## v0.3.0 (January 19, 2021)

- **Features**:
- Add TLS client authentication support.
- Add TLS OCSP stapling support.
- Add `From<Reject>` for `Rejection`.
- Add `close_frame` accessor to `ws::Message`.
- **Changes**:
- Update to Tokio v1.
- Update to Bytes v1.
- Update to hyper v0.14.
- Rework `sse` filter to be more like `ws`, with a single `Event` type and builder.
- Change `cookie` filter to extract a generic `FromStr` value.


### v0.2.5 (August 31, 2020)

- **Features**:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "warp"
version = "0.2.5" # don't forget to update html_root_url
version = "0.3.0" # don't forget to update html_root_url
description = "serve the web at warp speeds"
authors = ["Sean McArthur <sean@seanmonstar.com>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -36,8 +36,8 @@ Since it builds on top of [hyper](https://hyper.rs), you automatically get:
Add warp and Tokio to your dependencies:

```toml
tokio = { version = "0.2", features = ["full"] }
warp = "0.2"
tokio = { version = "1", features = ["full"] }
warp = "0.3"
```

And then get started in your `main.rs`:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/warp/0.2.5")]
#![doc(html_root_url = "https://docs.rs/warp/0.3.0")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]
Expand Down

0 comments on commit fdf87b6

Please sign in to comment.