Release 0.21.0

This commit is contained in:
Chris Wong 2019-07-01 21:03:44 +12:00
parent 680607dfae
commit 5e2c9e26a8
5 changed files with 19 additions and 6 deletions

View file

@ -2,6 +2,18 @@
## [Unreleased]
## [0.21.0] - 2019-07-01
- [Added] Default tag name to `div` when a class or ID is provided
[#173](https://github.com/lfairy/maud/pull/173)
- [Changed] Maud has a new website! Check it out at <https://maud.lambda.xyz/>.
- [Changed] Update Actix to 1.0. Pre-release versions of Actix are no longer supported.
[#176](https://github.com/lfairy/maud/pull/174)
- [Fixed] Use absolute imports in generated code
[#170](https://github.com/lfairy/maud/issues/170)
- [Fixed] Use `syn` instead of `literalext`
[#174](https://github.com/lfairy/maud/pull/174)
## [0.20.0] - 2019-01-17
- [Added] Rocket 0.4 support
@ -213,7 +225,8 @@
- [Fixed] Update to latest syntax extension API
[Unreleased]: https://github.com/lfairy/maud/compare/v0.20.0...HEAD
[Unreleased]: https://github.com/lfairy/maud/compare/v0.21.0...HEAD
[0.21.0]: https://github.com/lfairy/maud/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/lfairy/maud/compare/v0.19.0...v0.20.0
[0.19.0]: https://github.com/lfairy/maud/compare/v0.18.1...v0.19.0
[0.18.1]: https://github.com/lfairy/maud/compare/v0.18.0...v0.18.1

View file

@ -1,7 +1,7 @@
[package]
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.20.0"
version = "0.21.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
maud_macros = { version = "0.20.0", path = "../maud_macros" }
maud_macros = { version = "0.21.0", path = "../maud_macros" }
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = ">= 0.3, < 0.5", optional = true }
actix-web = { version = "1.0.0", optional = true, default-features = false }

View file

@ -7,7 +7,7 @@
//!
//! [book]: https://maud.lambda.xyz/
#![doc(html_root_url = "https://docs.rs/maud/0.20.0")]
#![doc(html_root_url = "https://docs.rs/maud/0.21.0")]
#[cfg(feature = "actix-web")] extern crate actix_web;
#[cfg(feature = "iron")] extern crate iron;

View file

@ -1,7 +1,7 @@
[package]
name = "maud_macros"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.20.0"
version = "0.21.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud_macros/"

View file

@ -4,7 +4,7 @@
#![feature(proc_macro_quote)]
#![feature(proc_macro_span)]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.20.0")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.21.0")]
// TokenStream values are reference counted, and the mental overhead of tracking
// lifetimes outweighs the marginal gains from explicit borrowing