Skip to content

Commit 95ad70e

Browse files
committed
v0.2.5
1 parent 28f248d commit 95ad70e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Diff for: CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### v0.2.5 (August 31, 2020)
2+
3+
- **Features**:
4+
- Add `warp_fn`, which can be used to create a `Wrap` from a closure. These in turn are used with `Filter::with()`.
5+
- Add `warp::host` filters to deal with `Host`/`:authority` headers.
6+
- Relax some lifetime bounds on `Server`.
7+
- **Fixes**:
8+
- Fix panic when URI doesn't have a slash (for example, `CONNECT foo.bar`).
9+
110
### v0.2.4 (July 20, 2020)
211

312
- **Features**:

Diff for: 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.4" # don't forget to update html_root_url
3+
version = "0.2.5" # 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"

Diff for: 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.4")]
1+
#![doc(html_root_url = "https://docs.rs/warp/0.2.5")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![cfg_attr(test, deny(warnings))]

0 commit comments

Comments
 (0)