Release 0.17.2

This commit is contained in:
Chris Wong 2017-11-19 20:10:08 +13:00
parent cc833dd624
commit 62298aec55
6 changed files with 9 additions and 7 deletions

View file

@ -4,6 +4,8 @@
- [Added] Iron 0.6 support
 [#107](https://github.com/lfairy/maud/pull/107)
- [Added] Implement `Clone` and `Copy` for `PreEscaped`
[#101](https://github.com/lfairy/maud/pull/101)
- [Fixed] Allow braces in the boolean expression for a toggled class
- [Fixed] Update to rustc 1.23.0-nightly (6160040d8 2017-11-18)

View file

@ -9,7 +9,7 @@ Great to see that you want to help out! Here are some tips for getting started:
* Most contributions should include tests see the [existing test code] for how to write these.
* Documentation on the proc macro interface can be found on [docs.rust-lang.org][proc_macro].
- As for lints: [Manishearth's site] may be of some help, though (as of this writing) it hasn't been updated since April.
- As for lints: [Manishearth's site] provides documentation for compiler internals.
Have fun! ☺️

View file

@ -2,7 +2,7 @@
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.17.1"
version = "0.17.2"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
@ -14,12 +14,12 @@ categories = ["template-engine"]
[dependencies]
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
maud_macros = { version = "0.17.1", path = "../maud_macros" }
maud_macros = { version = "0.17.2", path = "../maud_macros" }
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = "0.3", optional = true }
[dev-dependencies]
maud_lints = { path = "../maud_lints" }
maud_lints = { version = "0.17.0", path = "../maud_lints" }
[badges]
travis-ci = { repository = "lfairy/maud" }

View file

@ -8,7 +8,7 @@
//!
//! [book]: https://maud.lambda.xyz/
#![doc(html_root_url = "https://docs.rs/maud/0.17.1")]
#![doc(html_root_url = "https://docs.rs/maud/0.17.2")]
#[cfg(feature = "iron")] extern crate iron;
#[cfg(feature = "rocket")] extern crate rocket;

View file

@ -2,7 +2,7 @@
name = "maud_macros"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.17.1"
version = "0.17.2"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"

View file

@ -1,6 +1,6 @@
#![feature(proc_macro)]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.1")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.2")]
extern crate literalext;
extern crate maud_htmlescape;