File tree Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
4
10
5
11
- [ Added] Iron 0.6 support
6
12
[ #107 ] ( https://github.com/lfairy/maud/pull/107 )
152
158
- [ Fixed] Update to latest syntax extension API
153
159
154
160
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
156
164
[ 0.17.1 ] : https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
157
165
[ 0.17.0 ] : https://github.com/lfairy/maud/compare/v0.16.3...v0.17.0
158
166
[ 0.16.3 ] : https://github.com/lfairy/maud/compare/v0.16.2...v0.16.3
Original file line number Diff line number Diff line change 2
2
3
3
name = " maud"
4
4
# When releasing a new version, please update html_root_url in src/lib.rs
5
- version = " 0.17.2 "
5
+ version = " 0.17.3 "
6
6
authors = [" Chris Wong <lambda.fairy@gmail.com>" ]
7
7
8
8
license = " MIT/Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["template-engine"]
14
14
15
15
[dependencies ]
16
16
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" }
18
18
iron = { version = " >= 0.5.1, < 0.7.0" , optional = true }
19
19
rocket = { version = " 0.3" , optional = true }
20
20
Original file line number Diff line number Diff line change 8
8
//!
9
9
//! [book]: https://maud.lambda.xyz/
10
10
11
- #![ doc( html_root_url = "https://docs.rs/maud/0.17.2 " ) ]
11
+ #![ doc( html_root_url = "https://docs.rs/maud/0.17.3 " ) ]
12
12
13
13
#[ cfg( feature = "iron" ) ] extern crate iron;
14
14
#[ cfg( feature = "rocket" ) ] extern crate rocket;
Original file line number Diff line number Diff line change 2
2
3
3
name = " maud_macros"
4
4
# When releasing a new version, please update html_root_url in src/lib.rs
5
- version = " 0.17.2 "
5
+ version = " 0.17.3 "
6
6
authors = [" Chris Wong <lambda.fairy@gmail.com>" ]
7
7
8
8
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 1
1
#![ feature( proc_macro) ]
2
2
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 " ) ]
4
4
5
5
// TokenStream values are reference counted, and the mental overhead of tracking
6
6
// lifetimes outweighs the marginal gains from explicit borrowing
You can’t perform that action at this time.
0 commit comments