diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c52d1a..741f64e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Change Log -## Unreleased +## [0.15.0] - 2017-01-26 - [Added] Implement `Into<String>` for `Markup` +- [Added] Add a lint that suggests using the `maud::DOCTYPE` constant + [#66](https://github.com/lfairy/maud/issues/66) - [Removed] Remove the `RenderOnce` trait [#68](https://github.com/lfairy/maud/issues/68) +- [Fixed] Update to latest syntax extension API ## [0.14.0] - 2016-11-24 @@ -101,7 +104,8 @@ - [Fixed] Update to latest syntax extension API -[Unreleased]: https://github.com/lfairy/maud/compare/v0.14.0...HEAD +[Unreleased]: https://github.com/lfairy/maud/compare/v0.15.0...HEAD +[0.15.0]: https://github.com/lfairy/maud/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/lfairy/maud/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/lfairy/maud/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/lfairy/maud/compare/v0.11.1...v0.12.0 diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 7dcf71c..cc1eb7d 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud" -version = "0.14.0" +version = "0.15.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] license = "MIT/Apache-2.0" diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml index 075328b..8fd23a6 100644 --- a/maud_macros/Cargo.toml +++ b/maud_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud_macros" -version = "0.14.0" +version = "0.15.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] license = "MIT/Apache-2.0" @@ -14,7 +14,7 @@ Compile-time HTML templates. [dependencies] if_chain = "0.1" -maud = { path = "../maud", version = "0.14.0" } +maud = { path = "../maud", version = "0.15.0" } [lib] name = "maud_macros"