1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5This project adheres to [Semantic Versioning](https://semver.org).
6
7<!--
8Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
9-->
10
11## [Unreleased]
12
13## [0.5.3] - 2021-01-05
14
15- Exclude unneeded files from crates.io.
16
17## [0.5.2] - 2020-12-29
18
19- Documentation improvements.
20
21## [0.5.1] - 2020-10-14
22
23- Implement `Parse` for `Signature`.
24
25- Update parser implementations based on `syn` 1.0.44. This includes some bugfixes.
26
27- Disable default features of `proc-macro2` and `quote`.
28
29## [0.5.0] - 2019-12-09
30
31- [Added `Signature` type.][13]
32
33[13]: https://github.com/taiki-e/syn-mid/pull/13
34
35## [0.4.0] - 2019-08-15
36
37- Updated all data structures based on `syn` 1.0.
38
39- Updated `proc-macro2`, `syn`, and `quote` to 1.0.
40
41- Bumped the minimum required version from Rust 1.30 to Rust 1.31.
42
43## [0.3.0] - 2019-02-18
44
45- Removed support for unneeded syntax.
46
47- Removed unneeded types and fields.
48
49- Implemented `Parse` for `Block`.
50
51- Changed `clone-impls` feature to "disabled by default".
52
53- Removed `extra-traits` feature.
54
55- Bumped the minimum required version from Rust 1.15 to Rust 1.30.
56
57## [0.2.0] - 2019-02-15
58
59- Reduced features.
60
61- Fixed bugs.
62
63## [0.1.0] - 2019-02-14
64
65**Note: This release has been yanked.**
66
67Initial release
68
69[Unreleased]: https://github.com/taiki-e/syn-mid/compare/v0.5.3...HEAD
70[0.5.3]: https://github.com/taiki-e/syn-mid/compare/v0.5.2...v0.5.3
71[0.5.2]: https://github.com/taiki-e/syn-mid/compare/v0.5.1...v0.5.2
72[0.5.1]: https://github.com/taiki-e/syn-mid/compare/v0.5.0...v0.5.1
73[0.5.0]: https://github.com/taiki-e/syn-mid/compare/v0.4.0...v0.5.0
74[0.4.0]: https://github.com/taiki-e/syn-mid/compare/v0.3.0...v0.4.0
75[0.3.0]: https://github.com/taiki-e/syn-mid/compare/v0.2.0...v0.3.0
76[0.2.0]: https://github.com/taiki-e/syn-mid/compare/v0.1.0...v0.2.0
77[0.1.0]: https://github.com/taiki-e/syn-mid/releases/tag/v0.1.0
78