Release 0.17.1

This commit is contained in:
Chris Wong 2017-08-11 21:15:20 +12:00
parent f046b64409
commit 080b461f1b
5 changed files with 8 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# Change Log
## [Unreleased]
## [0.17.1] - 2017-08-11
- [Fixed] "Multiple applicable items in scope" error when using `Render` trait
[#97](https://github.com/lfairy/maud/issues/97)
@ -142,7 +142,8 @@
- [Fixed] Update to latest syntax extension API
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.0...HEAD
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.1...HEAD
[0.17.1]: https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
[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

View file

@ -2,7 +2,7 @@
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.17.0"
version = "0.17.1"
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.17.0", path = "../maud_macros" }
maud_macros = { version = "0.17.1", path = "../maud_macros" }
iron = { version = "0.5.1", optional = true }
rocket = { version = "0.3", optional = true }

View file

@ -8,7 +8,7 @@
//!
//! [book]: https://maud.lambda.xyz/
#![doc(html_root_url = "https://docs.rs/maud/0.17.0")]
#![doc(html_root_url = "https://docs.rs/maud/0.17.1")]
#[cfg(feature = "iron")] extern crate iron;
#[cfg(feature = "rocket")] extern crate rocket;

View file

@ -2,7 +2,7 @@
name = "maud_macros"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.17.0"
version = "0.17.1"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"

View file

@ -1,6 +1,6 @@
#![feature(proc_macro)]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.0")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.1")]
extern crate literalext;
extern crate maud_htmlescape;