mirror of https://github.com/rwf2/Rocket.git
New version: 0.2.1.
This commit is contained in:
parent
efbfbd1045
commit
d99de8e05b
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -1,3 +1,34 @@
|
|||
# Version 0.2.1 (Feb 24, 2017)
|
||||
|
||||
## Core Fixes
|
||||
|
||||
* `Flash` cookie deletion functions as expected regardless of the path.
|
||||
* `config` properly accepts IPv6 addresses.
|
||||
* Multiple `Set-Cookie` headers are properly set.
|
||||
|
||||
## Core Improvements
|
||||
|
||||
* `Display` and `Error` were implemented for `ConfigError`.
|
||||
* `webp`, `ttf`, `otf`, `woff`, and `woff2` were added as known content types.
|
||||
* Routes are presorted for faster routing.
|
||||
* `into_bytes` and `into_inner` methods were added to `Body`.
|
||||
|
||||
## Codegen
|
||||
|
||||
* Fixed `unmanaged_state` lint so that it works with prefilled type aliases.
|
||||
|
||||
## Contrib
|
||||
|
||||
* Better errors are emitted on Tera template parse errors.
|
||||
|
||||
## Documentation
|
||||
|
||||
* Fixed typos in `manage` and `JSON` docs.
|
||||
|
||||
## Infrastructure
|
||||
|
||||
* Updated doctests for latest Cargo nightly.
|
||||
|
||||
# Version 0.2.0 (Feb 06, 2017)
|
||||
|
||||
Detailed release notes for v0.2 can also be found on
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rocket_codegen"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
||||
description = "Code generation for the Rocket web framework."
|
||||
documentation = "https://api.rocket.rs/rocket_codegen/"
|
||||
|
@ -15,7 +15,7 @@ build = "build.rs"
|
|||
plugin = true
|
||||
|
||||
[dependencies]
|
||||
rocket = { version = "0.2.0", path = "../lib/" }
|
||||
rocket = { version = "0.2.1", path = "../lib/" }
|
||||
log = "^0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rocket_contrib"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
||||
description = "Community contributed libraries for the Rocket web framework."
|
||||
documentation = "https://api.rocket.rs/rocket_contrib/"
|
||||
|
@ -21,7 +21,7 @@ templates = ["serde", "serde_json", "lazy_static_macro", "glob"]
|
|||
lazy_static_macro = ["lazy_static"]
|
||||
|
||||
[dependencies]
|
||||
rocket = { version = "0.2.0", path = "../lib/" }
|
||||
rocket = { version = "0.2.1", path = "../lib/" }
|
||||
log = "^0.3"
|
||||
|
||||
# UUID dependencies.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rocket"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
||||
description = """
|
||||
Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
|
||||
|
@ -32,7 +32,7 @@ features = ["percent-encode"]
|
|||
|
||||
[dev-dependencies]
|
||||
lazy_static = "0.2"
|
||||
rocket_codegen = { version = "0.2.0", path = "../codegen" }
|
||||
rocket_codegen = { version = "0.2.1", path = "../codegen" }
|
||||
|
||||
[build-dependencies]
|
||||
ansi_term = "^0.9"
|
||||
|
|
Loading…
Reference in New Issue