diff --git a/CHANGELOG.md b/CHANGELOG.md index 915f1aa..ba00083 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] +## [0.17.0] - 2017-08-04 - [Added] Allow terminating void elements with semicolons (`;`) [#96](https://github.com/lfairy/maud/pull/96) @@ -8,6 +8,7 @@ [#94](https://github.com/lfairy/maud/pull/94) - [Changed] Port to new proc macro interface [#95](https://github.com/lfairy/maud/pull/95) +- [Removed] Removed the lint plugin for now -- it'll be added back in a later version once some design issues are sorted out. ## [0.16.3] - 2017-04-22 @@ -136,7 +137,8 @@ - [Fixed] Update to latest syntax extension API -[Unreleased]: https://github.com/lfairy/maud/compare/v0.16.3...HEAD +[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.0...HEAD +[0.17.0]: https://github.com/lfairy/maud/compare/v0.16.3...v0.17.0 [0.16.3]: https://github.com/lfairy/maud/compare/v0.16.2...v0.16.3 [0.16.2]: https://github.com/lfairy/maud/compare/v0.16.1...v0.16.2 [0.16.1]: https://github.com/lfairy/maud/compare/v0.16.0...v0.16.1 diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 3001991..c1e3057 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.16.2" +version = "0.17.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.16.3", path = "../maud_macros" } +maud_macros = { version = "0.17.0", path = "../maud_macros" } iron = { version = "0.5.1", optional = true } rocket = { version = "0.3", optional = true } diff --git a/maud/src/lib.rs b/maud/src/lib.rs index 115d7df..d16fa5e 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.16.2")] +#![doc(html_root_url = "https://docs.rs/maud/0.17.0")] #[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 40907eb..843b76d 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.16.3" +version = "0.17.0" 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 aaa07da..6ae43ef 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.16.3")] +#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.0")] extern crate literalext; extern crate maud_htmlescape;