Reword 0.18.1 changelog entry
This commit is contained in:
parent
b3474a1784
commit
7bcdc27ab8
2 changed files with 4 additions and 5 deletions
|
@ -5,10 +5,10 @@
|
||||||
## [0.18.1] - 2018-07-18
|
## [0.18.1] - 2018-07-18
|
||||||
|
|
||||||
- [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
|
- [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
|
||||||
- `proc_macro` has been stabilized on 1.29.0-nightly
|
- The `proc_macro` feature was recently stabilized ([rust-lang/rust#52081]). As a result of this change, you may get "unresolved import" errors after updating your Rust compiler. To fix this error, replace any `#![feature(proc_macro)]` in your crate with `#![feature(use_extern_macros)]`. See the [documentation][getting-started] for a working example.
|
||||||
(https://github.com/rust-lang/rust/pull/52081#issue-199544227) which changes
|
|
||||||
the features required to use maud. Replace `#![feature(proc_macro)]` in your
|
[rust-lang/rust#52081]: https://github.com/rust-lang/rust/pull/52081
|
||||||
crate that uses maud and use `#![feature(use_extern_macros)]` instead.
|
[getting-started]: https://maud.lambda.xyz/getting_started.html
|
||||||
|
|
||||||
## [0.18.0] - 2018-07-15
|
## [0.18.0] - 2018-07-15
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#![feature(plugin, test)]
|
#![feature(plugin, test)]
|
||||||
#![feature(use_extern_macros, proc_macro_non_items)]
|
#![feature(use_extern_macros, proc_macro_non_items)]
|
||||||
|
|
||||||
|
|
||||||
extern crate maud;
|
extern crate maud;
|
||||||
|
|
||||||
use maud::html;
|
use maud::html;
|
||||||
|
|
Loading…
Add table
Reference in a new issue