Skip to content

Commit 6570576

Browse files
committed
v0.3.2
1 parent a23f147 commit 6570576

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### v0.3.2 (November 9, 2021)
2+
3+
- **Features**:
4+
- Add `Filter::then()`, which is like `Filter::map()` in that it's infallible, but is async like `Filter::and_then()`.
5+
- Add `redirect::found()` reply helper that returns `302 Found`.
6+
- Add `compression-brotli` and `compression-gzip` cargo features to enable only the compression you need.
7+
- Allow `HEAD` requests to be served to `fs::dir()` filters.
8+
- Allow `path!()` with no arguments.
9+
- **Fixes**:
10+
- Update private dependencies Tungstenite and Multipart.
11+
- Replaces uses of `futures` with `futures-util`, which is a smaller dependency.
12+
13+
114
### v0.3.1 (March 24, 2021)
215

316
- **Features**:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "warp"
3-
version = "0.3.1" # don't forget to update html_root_url
3+
version = "0.3.2" # 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"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/warp/0.3.1")]
1+
#![doc(html_root_url = "https://docs.rs/warp/0.3.2")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![deny(rust_2018_idioms)]

0 commit comments

Comments
 (0)