Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Mar 25, 2021
1 parent d61d242 commit b6d1fc0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
### v0.3.1 (March 24, 2021)

- **Features**:
- Add `pong` constructor to websocket messages.
- Add `redirect::see_other` and `redirect::permanent` helpers.
- **Fixes**:
- Fix `fs` filters sometimes having an off-by-one error with range requests.
- Fix CORS to allow spaces when checking `Access-Control-Request-Headers`.

## v0.3.0 (January 19, 2021)

- **Features**:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "warp"
version = "0.3.0" # don't forget to update html_root_url
version = "0.3.1" # 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
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/warp/0.3.0")]
#![doc(html_root_url = "https://docs.rs/warp/0.3.1")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]
Expand Down

0 comments on commit b6d1fc0

Please sign in to comment.