Skip to content

Releases: dtolnay/indoc

0.3.2

28 Apr 08:52
0.3.2
10ef894
Compare
Choose a tag to compare
  • -Z minimal-versions fix (#28, thanks @konstin)
  • Update example code in documentation to 2018 edition

0.3.1

30 Nov 08:28
0.3.1
97a5215
Compare
Choose a tag to compare
  • Support building with -Z minimal-versions

0.3.0

29 Nov 07:42
0.3.0
4a2c661
Compare
Choose a tag to compare
  • 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-style use indoc::indoc imports.

0.2.8

07 Sep 05:10
0.2.8
e46dec9
Compare
Choose a tag to compare
  • Update to Syn 0.15

0.2.7

03 Sep 15:45
0.2.7
a29a684
Compare
Choose a tag to compare
  • #![no_std] support

0.2.6

27 May 07:15
0.2.6
96d0259
Compare
Choose a tag to compare
  • Update to Syn 0.14

0.2.5

30 Apr 04:48
0.2.5
cbbcbf2
Compare
Choose a tag to compare
  • Include LICENSE files in published sub-crates as required by Apache 2.0 license

0.2.4

30 Apr 04:36
0.2.4
30d271d
Compare
Choose a tag to compare
  • Update to Syn 0.13

0.2.3

23 Oct 17:10
0.2.3
7ac7b08
Compare
Choose a tag to compare
  • Update to proc-macro-hack 0.4

0.2.2

23 Oct 16:31
0.2.2
54e1566
Compare
Choose a tag to compare
  • Fix a shared library error when using indoc from a binary and running outside of Cargo (#15)