Skip to content

Commit 8498e45

Browse files
committed
v0.1.3
1 parent 3a50b0d commit 8498e45

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.1.3 (August 28, 2018)
2+
3+
- **Features**:
4+
- Add `warp::reject::forbidden()` to represent `403 Forbidden` responses.
5+
- Add `Rejection::with(cause)` to customize rejection messages.
6+
- **Fixes**:
7+
- Fix `warp::body::form` to allow charsets in the `content-type` header.
8+
19
### v0.1.2 (August 14, 2018)
210

311
- **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.1.2" # don't forget to update html_root_url
3+
version = "0.1.3" # 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.1.2")]
1+
#![doc(html_root_url = "https://docs.rs/warp/0.1.3")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![cfg_attr(test, deny(warnings))]

0 commit comments

Comments
 (0)