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.6.0] - 2023-09-30
14
15- Update to syn 2.0. ([#26](https://github.com/taiki-e/syn-mid/pull/26))
16
17## [0.5.4] - 2023-06-29
18
19- Increase the minimum supported Rust version from Rust 1.31 to Rust 1.56.
20
21- Update minimal version of `proc-macro2` to 1.0.60.
22
23## [0.5.3] - 2021-01-05
24
25- Exclude unneeded files from crates.io.
26
27## [0.5.2] - 2020-12-29
28
29- Documentation improvements.
30
31## [0.5.1] - 2020-10-14
32
33- Implement `Parse` for `Signature`.
34
35- Update parser implementations based on `syn` 1.0.44. This includes some bugfixes.
36
37- Disable default features of `proc-macro2` and `quote`.
38
39## [0.5.0] - 2019-12-09
40
41- Added `Signature` type. ([#13](https://github.com/taiki-e/syn-mid/pull/13))
42
43## [0.4.0] - 2019-08-15
44
45- Updated all data structures based on `syn` 1.0.
46
47- Updated `proc-macro2`, `syn`, and `quote` to 1.0.
48
49- Bumped the minimum required version from Rust 1.30 to Rust 1.31.
50
51## [0.3.0] - 2019-02-18
52
53- Removed support for unneeded syntax.
54
55- Removed unneeded types and fields.
56
57- Implemented `Parse` for `Block`.
58
59- Changed `clone-impls` feature to "disabled by default".
60
61- Removed `extra-traits` feature.
62
63- Bumped the minimum required version from Rust 1.15 to Rust 1.30.
64
65## [0.2.0] - 2019-02-15
66
67- Reduced features.
68
69- Fixed bugs.
70
71## [0.1.0] - 2019-02-14
72
73**Note:** This release has been yanked.
74
75Initial release
76
77[Unreleased]: https://github.com/taiki-e/syn-mid/compare/v0.6.0...HEAD
78[0.6.0]: https://github.com/taiki-e/syn-mid/compare/v0.5.4...v0.6.0
79[0.5.4]: https://github.com/taiki-e/syn-mid/compare/v0.5.3...v0.5.4
80[0.5.3]: https://github.com/taiki-e/syn-mid/compare/v0.5.2...v0.5.3
81[0.5.2]: https://github.com/taiki-e/syn-mid/compare/v0.5.1...v0.5.2
82[0.5.1]: https://github.com/taiki-e/syn-mid/compare/v0.5.0...v0.5.1
83[0.5.0]: https://github.com/taiki-e/syn-mid/compare/v0.4.0...v0.5.0
84[0.4.0]: https://github.com/taiki-e/syn-mid/compare/v0.3.0...v0.4.0
85[0.3.0]: https://github.com/taiki-e/syn-mid/compare/v0.2.0...v0.3.0
86[0.2.0]: https://github.com/taiki-e/syn-mid/compare/v0.1.0...v0.2.0
87[0.1.0]: https://github.com/taiki-e/syn-mid/releases/tag/v0.1.0
88