Skip to content

Releases: dtolnay/syn

0.10.4

22 Dec 20:50
0.10.4
c37d1b6
Compare
Choose a tag to compare

(yanked)

0.10.3

19 Nov 21:03
0.10.3
Compare
Choose a tag to compare
  • Export FieldValue which was mistakenly not public (#67, thanks @shepmaster)

0.10.2

19 Nov 21:02
0.10.2
Compare
Choose a tag to compare

0.10.1

09 Nov 14:33
0.10.1
4aa5c72
Compare
Choose a tag to compare
  • Export ExprKind which was mistakenly not public (#64, thanks @KodrAus)

0.10.0

31 Oct 03:44
0.10.0
3c0c8c5
Compare
Choose a tag to compare

Significant new features

Lots of minor enhancements

  • More efficient implementation of Generics::split_for_impl
  • Support for out-of-line modules i.e. mod foo; in addition to mod foo { ... }
  • From impls for constructing the various Lit variants (#50, thanks @killercup)
  • Parsing of raw byte strings
  • Parsing of floating-point literals
  • Parsing of integer literals containing underscores for visual alignment
  • Parsing of hex, octal, and binary integer literals
  • More restrictive parsing of variable names
  • Nicer output for string literals containing the zero byte \0
  • Parsing of doc comments inside of macro invocations
  • Parsing of const trait and impl methods
  • Parsing of bare function types containing lifetimes
  • Parsing of module inner attributes
  • Parsing of hex escapes greater than \x7F in byte strings and byte literals
  • Parsing of trailing commas in a match expression
  • Parsing of slice patterns
  • Parsing of unsafety and ABI associated with a bare function type
  • Parsing of variadic extern functions
  • Parsing of negative integer literal patterns
  • Parsing of inner attributes within functions and methods
  • Parsing of trailing commas in use declarations
  • Parsing of attributes on statements
  • Parsing of where clauses on type aliases
  • Parsing of left-to-right mark and right-to-left mark codepoints
  • Parsing of placement syntax
  • Parsing of shebang at the top of a file
  • Parsing of shorthand syntax within struct literal expressions
  • Parsing of trailing commas inside generics
  • Parsing of carriage returns in multiline string literals
  • Parsing of pub(crate) and pub(restricted) visibility modifiers
  • Parsing of byte order marks
  • Parsing of trailing commas in slice patterns

0.10.0-rc1

25 Oct 07:33
0.10.0-rc1
45823d0
Compare
Choose a tag to compare
0.10.0-rc1 Pre-release
Pre-release
Release 0.10.0-rc1

0.9.2

20 Oct 16:06
0.9.2
a842db7
Compare
Choose a tag to compare

0.9.1

18 Oct 07:56
0.9.1
edea33f
Compare
Choose a tag to compare

0.9.0

08 Oct 22:51
0.9.0
f8f4307
Compare
Choose a tag to compare
  • Enum discriminant values and array lengths now support expressions instead of just usize literals (#31).
  • Update quote dependency to 0.3. Make sure to check those release notes for an important update affecting repetitions.
  • Lots of progress on parsing Rust syntax beyond structs and enums (#4).

0.8.7

05 Oct 07:16
0.8.7
05205da
Compare
Choose a tag to compare
let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

quote! {
    impl #impl_generics MyTrait for #name #ty_generics #where_clause {
        // ...
    }
}