From c614478bd5a312a8cb3f81de227804d01c9b7906 Mon Sep 17 00:00:00 2001 From: Chris Wong <lambda.fairy@gmail.com> Date: Thu, 3 Nov 2016 23:17:34 +1300 Subject: [PATCH] Release 0.13.0 --- CHANGELOG.md | 12 +++++++++++- maud/Cargo.toml | 2 +- maud_macros/Cargo.toml | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aed083..6a2da63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [0.13.0] - 2016-11-03 + +- [Added] Support `@while` and `@while let` + [#55](https://github.com/lfairy/maud/pull/55) +- [Changed] Change `PreEscaped` to take `AsRef<str>` instead of `Display` + [#54](https://github.com/lfairy/maud/issues/54) +- [Changed] Single quotes (`'`) are no longer escaped +- [Fixed] Update to latest syntax extension API + ## [0.12.0] - 2016-10-09 - [Changed] Change `Render` and `RenderOnce` to return `Markup` instead @@ -74,7 +83,8 @@ -[Unreleased]: https://github.com/lfairy/maud/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/lfairy/maud/compare/v0.13.0...HEAD +[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 [0.11.1]: https://github.com/lfairy/maud/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/lfairy/maud/compare/v0.10.0...v0.11.0 diff --git a/maud/Cargo.toml b/maud/Cargo.toml index d17e377..475afcb 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud" -version = "0.12.0" +version = "0.13.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 f1cedc1..838d20c 100644 --- a/maud_macros/Cargo.toml +++ b/maud_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud_macros" -version = "0.12.0" +version = "0.13.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] license = "MIT/Apache-2.0" @@ -14,7 +14,7 @@ Compile-time HTML templates. [dependencies.maud] path = "../maud" -version = "0.12.0" +version = "0.13.0" [lib] name = "maud_macros"