Release 0.20.0
This commit is contained in:
parent
51a0243c40
commit
6de2cf1998
5 changed files with 14 additions and 6 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,13 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.20.0] - 2019-01-17
|
||||
|
||||
- [Added] Rocket 0.4 support
|
||||
[#162](https://github.com/lfairy/maud/pull/162)
|
||||
- [Changed] Set `Content-Type` header for Actix responses
|
||||
[#160](https://github.com/lfairy/maud/pull/160)
|
||||
|
||||
## [0.19.0] - 2018-10-20
|
||||
|
||||
- [Added] Allow arbitrary syntax in class and ID shorthand
|
||||
|
@ -206,7 +213,8 @@
|
|||
- [Fixed] Update to latest syntax extension API
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/lfairy/maud/compare/v0.19.0...HEAD
|
||||
[Unreleased]: https://github.com/lfairy/maud/compare/v0.20.0...HEAD
|
||||
[0.20.0]: https://github.com/lfairy/maud/compare/v0.19.0...v0.20.0
|
||||
[0.19.0]: https://github.com/lfairy/maud/compare/v0.18.1...v0.19.0
|
||||
[0.18.1]: https://github.com/lfairy/maud/compare/v0.18.0...v0.18.1
|
||||
[0.18.0]: https://github.com/lfairy/maud/compare/v0.17.5...v0.18.0
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name = "maud"
|
||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||
|
||||
license = "MIT/Apache-2.0"
|
||||
|
@ -14,7 +14,7 @@ categories = ["template-engine"]
|
|||
|
||||
[dependencies]
|
||||
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
||||
maud_macros = { version = "0.19.0", path = "../maud_macros" }
|
||||
maud_macros = { version = "0.20.0", path = "../maud_macros" }
|
||||
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
|
||||
rocket = { version = ">= 0.3, < 0.5", optional = true }
|
||||
actix-web = { version = ">= 0.6.12, < 0.8.0", optional = true }
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//!
|
||||
//! [book]: https://maud.lambda.xyz/
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/maud/0.19.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/maud/0.20.0")]
|
||||
|
||||
#[cfg(feature = "actix-web")] extern crate actix_web;
|
||||
#[cfg(feature = "iron")] extern crate iron;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name = "maud_macros"
|
||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||
|
||||
license = "MIT/Apache-2.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#![feature(proc_macro_quote)]
|
||||
#![feature(proc_macro_span)]
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/maud_macros/0.19.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/maud_macros/0.20.0")]
|
||||
|
||||
// TokenStream values are reference counted, and the mental overhead of tracking
|
||||
// lifetimes outweighs the marginal gains from explicit borrowing
|
||||
|
|
Loading…
Add table
Reference in a new issue