File tree Expand file tree Collapse file tree 5 files changed +21
-8
lines changed
Expand file tree Collapse file tree 5 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.3.0] ( https://github.com/Wybxc/parse-it/compare/parse-it-v0.2.0...parse-it-v0.3.0 ) - 2025-07-18
11+
12+ ### Added
13+
14+ - first lexer+parser example
15+ - type pattern and literal in parser syntax
16+ - enhance parser and lexer with literal parsing capabilities
17+ - refactor lexer and parser interfaces for improved type handling
18+ - basic lexer support
19+ - lexer example (developing...)
20+ - lexer basis
21+ - lexer syntax
22+
1023## [ 0.2.0] ( https://github.com/Wybxc/parse-it/compare/parse-it-v0.1.0...parse-it-v0.2.0 ) - 2025-07-14
1124
1225### Added
Original file line number Diff line number Diff line change 11[package ]
22name = " parse-it-codegen"
3- version = " 0.2 .0"
3+ version = " 0.3 .0"
44edition = " 2021"
55license = " Apache-2.0"
66description = " A user-friendly, opinionated parser generator for Rust."
Original file line number Diff line number Diff line change 11[package ]
22name = " parse-it-macros"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44edition = " 2021"
55license = " Apache-2.0"
66description = " A user-friendly, opinionated parser generator for Rust."
77
88[dependencies ]
9- parse-it-codegen = { version = " 0.2 .0" , path = " ../parse-it-codegen" }
9+ parse-it-codegen = { version = " 0.3 .0" , path = " ../parse-it-codegen" }
1010proc-macro2 = { workspace = true }
1111quote = { workspace = true }
1212syn = { workspace = true }
Original file line number Diff line number Diff line change 11[package ]
22name = " parse-it"
3- version = " 0.2 .0"
3+ version = " 0.3 .0"
44edition = " 2021"
55description = " A user-friendly, opinionated parser generator for Rust."
66license = " Apache-2.0"
77
88[dependencies ]
9- parse-it-macros = { version = " 0.1.1 " , path = " ../parse-it-macros" }
9+ parse-it-macros = { version = " 0.1.2 " , path = " ../parse-it-macros" }
1010rustc-hash = { workspace = true }
1111regex-automata = { workspace = true }
You can’t perform that action at this time.
0 commit comments