Release 0.17.4
This commit is contained in:
parent
05fb7364c6
commit
7c63fc138a
7 changed files with 19 additions and 8 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.17.4] - 2018-05-02
|
||||||
|
|
||||||
|
- [Fixed] Update to rustc 1.27.0-nightly (686d0ae13 2018-04-27)
|
||||||
|
[#123](https://github.com/lfairy/maud/issues/123)
|
||||||
|
[#124](https://github.com/lfairy/maud/pull/124)
|
||||||
|
[#125](https://github.com/lfairy/maud/issues/125)
|
||||||
|
[#126](https://github.com/lfairy/maud/pull/126)
|
||||||
|
|
||||||
## [0.17.3] - 2018-04-21
|
## [0.17.3] - 2018-04-21
|
||||||
|
|
||||||
- [Fixed] Update to rustc 1.27.0-nightly (ac3c2288f 2018-04-18)
|
- [Fixed] Update to rustc 1.27.0-nightly (ac3c2288f 2018-04-18)
|
||||||
|
@ -158,7 +168,8 @@
|
||||||
- [Fixed] Update to latest syntax extension API
|
- [Fixed] Update to latest syntax extension API
|
||||||
|
|
||||||
|
|
||||||
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.3...HEAD
|
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.4...HEAD
|
||||||
|
[0.17.4]: https://github.com/lfairy/maud/compare/v0.17.3...v0.17.4
|
||||||
[0.17.3]: https://github.com/lfairy/maud/compare/v0.17.2...v0.17.3
|
[0.17.3]: https://github.com/lfairy/maud/compare/v0.17.2...v0.17.3
|
||||||
[0.17.2]: https://github.com/lfairy/maud/compare/v0.17.1...v0.17.2
|
[0.17.2]: https://github.com/lfairy/maud/compare/v0.17.1...v0.17.2
|
||||||
[0.17.1]: https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
|
[0.17.1]: https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
name = "maud"
|
name = "maud"
|
||||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||||
version = "0.17.3"
|
version = "0.17.4"
|
||||||
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 @@ categories = ["template-engine"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
||||||
maud_macros = { version = "0.17.3", path = "../maud_macros" }
|
maud_macros = { version = "0.17.4", path = "../maud_macros" }
|
||||||
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
|
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
|
||||||
rocket = { version = "0.3", optional = true }
|
rocket = { version = "0.3", optional = true }
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
//!
|
//!
|
||||||
//! [book]: https://maud.lambda.xyz/
|
//! [book]: https://maud.lambda.xyz/
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/maud/0.17.3")]
|
#![doc(html_root_url = "https://docs.rs/maud/0.17.4")]
|
||||||
|
|
||||||
#[cfg(feature = "iron")] extern crate iron;
|
#[cfg(feature = "iron")] extern crate iron;
|
||||||
#[cfg(feature = "rocket")] extern crate rocket;
|
#[cfg(feature = "rocket")] extern crate rocket;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
name = "maud_lints"
|
name = "maud_lints"
|
||||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||||
version = "0.17.0"
|
version = "0.17.4"
|
||||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||||
|
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#![feature(macro_vis_matcher)]
|
#![feature(macro_vis_matcher)]
|
||||||
#![recursion_limit = "1000"] // if_chain
|
#![recursion_limit = "1000"] // if_chain
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/maud_lints/0.17.0")]
|
#![doc(html_root_url = "https://docs.rs/maud_lints/0.17.4")]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate if_chain;
|
extern crate if_chain;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
name = "maud_macros"
|
name = "maud_macros"
|
||||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||||
version = "0.17.3"
|
version = "0.17.4"
|
||||||
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 @@
|
||||||
#![feature(proc_macro)]
|
#![feature(proc_macro)]
|
||||||
#![feature(proc_macro_non_items)]
|
#![feature(proc_macro_non_items)]
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.3")]
|
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.4")]
|
||||||
|
|
||||||
// TokenStream values are reference counted, and the mental overhead of tracking
|
// TokenStream values are reference counted, and the mental overhead of tracking
|
||||||
// lifetimes outweighs the marginal gains from explicit borrowing
|
// lifetimes outweighs the marginal gains from explicit borrowing
|
||||||
|
|
Loading…
Add table
Reference in a new issue