Release 0.13.0
This commit is contained in:
parent
ac259ebe47
commit
c614478bd5
3 changed files with 14 additions and 4 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,5 +1,14 @@
|
||||||
# Change Log
|
# 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
|
## [0.12.0] - 2016-10-09
|
||||||
|
|
||||||
- [Changed] Change `Render` and `RenderOnce` to return `Markup` instead
|
- [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.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.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
|
[0.11.0]: https://github.com/lfairy/maud/compare/v0.10.0...v0.11.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "maud"
|
name = "maud"
|
||||||
version = "0.12.0"
|
version = "0.13.0"
|
||||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||||
|
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "maud_macros"
|
name = "maud_macros"
|
||||||
version = "0.12.0"
|
version = "0.13.0"
|
||||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||||
|
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
@ -14,7 +14,7 @@ Compile-time HTML templates.
|
||||||
|
|
||||||
[dependencies.maud]
|
[dependencies.maud]
|
||||||
path = "../maud"
|
path = "../maud"
|
||||||
version = "0.12.0"
|
version = "0.13.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "maud_macros"
|
name = "maud_macros"
|
||||||
|
|
Loading…
Add table
Reference in a new issue