Skip to content

Releases: dtolnay/quote

0.6.2

21 May 16:31
0.6.2
ab3d500
Compare
Choose a tag to compare
  • Documentation improvements

0.6.1

21 May 05:35
0.6.1
7946ea3
Compare
Choose a tag to compare
  • Documentation improvements

0.6.0

21 May 05:35
0.6.0
e62263f
Compare
Choose a tag to compare
  • Update to proc-macro2 0.4 which tracks the procedural macro API in the nightly compiler
  • Remove quote::Tokens type and replace with proc_macro2::TokenStream
  • Move methods of quote::Tokens to a quote::TokenStreamExt extension trait

0.5.2

21 Apr 17:42
0.5.2
d5baceb
Compare
Choose a tag to compare
  • Allow interpolating proc_macro2::Op and proc_macro2::Group (#71)

0.5.1

31 Mar 21:01
0.5.1
45d3801
Compare
Choose a tag to compare
  • Render readme on crates.io

0.5.0

31 Mar 20:58
0.5.0
b4d53e6
Compare
Choose a tag to compare
  • Update to proc-macro2 0.3

0.4.2

08 Jan 21:25
0.4.2
3bdfd71
Compare
Choose a tag to compare
  • Implement PartialEq and Hash for quote::Tokens

0.4.1

08 Jan 19:20
0.4.1
c8f0962
Compare
Choose a tag to compare
  • Add an impl IntoIterator for Tokens, allowing a Tokens to be passed to Tokens::append_all (thanks @Eijebong)

0.4.0

08 Jan 16:13
0.4.0
5520c53
Compare
Choose a tag to compare
  • Rewrite to produce Macros 2.0-style token streams rather than strings of source code. Check the readme.

0.3.15

06 Mar 02:50
0.3.15
b0dac7a
Compare
Choose a tag to compare
  • Allow appending Tokens to Tokens (#29, thanks @colin-kiegel)

    tokens.append(quote! {
        /* ... */
    });