Releases: dtolnay/indoc
Releases · dtolnay/indoc
0.3.2
0.3.1
0.3.0
-
Support 2018-style macro imports (#24)
- #[macro_use] extern crate indoc; + use indoc::indoc;
Breaking changes
- This release bumps the minimum required compiler version from rustc 1.15 to rustc 1.30. If you require support for compilers older than 1.30, please continue to use indoc 0.2. The functionality is the same except that indoc 0.2 uses
#[macro_use]
and does not support 2018-styleuse indoc::indoc
imports.