diff --git a/CHANGELOG.md b/CHANGELOG.md index b321c81..5a4a559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6b230f8..7de1b0c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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! ☺️ diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 39675d7..6bb9cab 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -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" } diff --git a/maud/src/lib.rs b/maud/src/lib.rs index 4a28f30..3850b15 100644 --- a/maud/src/lib.rs +++ b/maud/src/lib.rs @@ -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; diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml index 29bc3a9..4b4f23c 100644 --- a/maud_macros/Cargo.toml +++ b/maud_macros/Cargo.toml @@ -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" diff --git a/maud_macros/src/lib.rs b/maud_macros/src/lib.rs index 1f6963a..1045fd3 100644 --- a/maud_macros/src/lib.rs +++ b/maud_macros/src/lib.rs @@ -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;