Skip to content

Commit 41f7744

Browse files
committed
Release 0.17.3
1 parent 798ed22 commit 41f7744

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [0.17.3] - 2018-04-21
4+
5+
- [Fixed] Update to rustc 1.27.0-nightly (ac3c2288f 2018-04-18)
6+
[#121](https://github.com/lfairy/maud/issues/121)
7+
[#122](https://github.com/lfairy/maud/pull/122)
8+
9+
## [0.17.2] - 2017-11-19
410

511
- [Added] Iron 0.6 support
612
 [#107](https://github.com/lfairy/maud/pull/107)
@@ -152,7 +158,9 @@
152158
- [Fixed] Update to latest syntax extension API
153159

154160

155-
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.1...HEAD
161+
[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.3...HEAD
162+
[0.17.3]: https://github.com/lfairy/maud/compare/v0.17.2...v0.17.3
163+
[0.17.2]: https://github.com/lfairy/maud/compare/v0.17.1...v0.17.2
156164
[0.17.1]: https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
157165
[0.17.0]: https://github.com/lfairy/maud/compare/v0.16.3...v0.17.0
158166
[0.16.3]: https://github.com/lfairy/maud/compare/v0.16.2...v0.16.3

maud/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "maud"
44
# When releasing a new version, please update html_root_url in src/lib.rs
5-
version = "0.17.2"
5+
version = "0.17.3"
66
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
77

88
license = "MIT/Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["template-engine"]
1414

1515
[dependencies]
1616
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
17-
maud_macros = { version = "0.17.2", path = "../maud_macros" }
17+
maud_macros = { version = "0.17.3", path = "../maud_macros" }
1818
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
1919
rocket = { version = "0.3", optional = true }
2020

maud/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! [book]: https://maud.lambda.xyz/
1010
11-
#![doc(html_root_url = "https://docs.rs/maud/0.17.2")]
11+
#![doc(html_root_url = "https://docs.rs/maud/0.17.3")]
1212

1313
#[cfg(feature = "iron")] extern crate iron;
1414
#[cfg(feature = "rocket")] extern crate rocket;

maud_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "maud_macros"
44
# When releasing a new version, please update html_root_url in src/lib.rs
5-
version = "0.17.2"
5+
version = "0.17.3"
66
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
77

88
license = "MIT/Apache-2.0"

maud_macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(proc_macro)]
22

3-
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.2")]
3+
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.3")]
44

55
// TokenStream values are reference counted, and the mental overhead of tracking
66
// lifetimes outweighs the marginal gains from explicit borrowing

0 commit comments

Comments
 (0)