Release 0.18.1
This commit is contained in:
parent
d7d3eb600e
commit
de6f654614
7 changed files with 14 additions and 9 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.18.1] - 2018-07-18
|
||||
|
||||
- [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
|
||||
|
||||
## [0.18.0] - 2018-07-15
|
||||
|
||||
- [Added] Support for the Actix web framework
|
||||
|
@ -183,7 +187,8 @@
|
|||
- [Fixed] Update to latest syntax extension API
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/lfairy/maud/compare/v0.18.0...HEAD
|
||||
[Unreleased]: https://github.com/lfairy/maud/compare/v0.18.1...HEAD
|
||||
[0.18.1]: https://github.com/lfairy/maud/compare/v0.18.0...v0.18.1
|
||||
[0.18.0]: https://github.com/lfairy/maud/compare/v0.17.5...v0.18.0
|
||||
[0.17.5]: https://github.com/lfairy/maud/compare/v0.17.4...v0.17.5
|
||||
[0.17.4]: https://github.com/lfairy/maud/compare/v0.17.3...v0.17.4
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name = "maud"
|
||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||
version = "0.18.0"
|
||||
version = "0.18.1"
|
||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||
|
||||
license = "MIT/Apache-2.0"
|
||||
|
@ -14,13 +14,13 @@ categories = ["template-engine"]
|
|||
|
||||
[dependencies]
|
||||
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
|
||||
maud_macros = { version = "0.18.0", path = "../maud_macros" }
|
||||
maud_macros = { version = "0.18.1", path = "../maud_macros" }
|
||||
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
|
||||
rocket = { version = "0.3", optional = true }
|
||||
actix-web = { version = "0.6.12", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
maud_lints = { version = "0.17.0", path = "../maud_lints" }
|
||||
maud_lints = { version = "0.18.1", path = "../maud_lints" }
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "lfairy/maud" }
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//!
|
||||
//! [book]: https://maud.lambda.xyz/
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/maud/0.18.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/maud/0.18.1")]
|
||||
|
||||
#[cfg(feature = "actix-web")] extern crate actix_web;
|
||||
#[cfg(feature = "iron")] extern crate iron;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name = "maud_lints"
|
||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||
version = "0.17.4"
|
||||
version = "0.18.1"
|
||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||
|
||||
license = "MIT/Apache-2.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#![feature(macro_vis_matcher)]
|
||||
#![recursion_limit = "1000"] // if_chain
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/maud_lints/0.17.4")]
|
||||
#![doc(html_root_url = "https://docs.rs/maud_lints/0.18.1")]
|
||||
|
||||
#[macro_use]
|
||||
extern crate if_chain;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
name = "maud_macros"
|
||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||
version = "0.18.0"
|
||||
version = "0.18.1"
|
||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||
|
||||
license = "MIT/Apache-2.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#![feature(proc_macro_span)]
|
||||
#![feature(use_extern_macros)]
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/maud_macros/0.18.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/maud_macros/0.18.1")]
|
||||
|
||||
// TokenStream values are reference counted, and the mental overhead of tracking
|
||||
// lifetimes outweighs the marginal gains from explicit borrowing
|
||||
|
|
Loading…
Add table
Reference in a new issue