Skip to content

Commit 436bb3e

Browse files
authored
chore: release (#2)
1 parent da9a9c9 commit 436bb3e

File tree

5 files changed

+29
-8
lines changed

5 files changed

+29
-8
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/Wybxc/parse-it/compare/parse-it-v0.1.0...parse-it-v0.2.0) - 2025-07-14
11+
12+
### Added
13+
14+
- [**breaking**] remove logos feature
15+
- add debug support to parsing context and configuration
16+
- add Logos lexer support
17+
18+
### Fixed
19+
20+
- calc_logos example
21+
22+
### Other
23+
24+
- enhance stdin handling in Brainfuck example
25+
- use in-line format (suggested by clippy)
26+
- unify parsing method names and update documentation
27+
- simplify span handling in ParserState
28+
- refactor imports for consistency and readability
29+
- update parser and lexer to use mutable state references
30+
1031
## [0.1.0](https://github.com/Wybxc/parse-it/releases/tag/parse-it-v0.1.0) - 2025-02-18
1132

1233
### Added

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

parse-it-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-it-codegen"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A user-friendly, opinionated parser generator for Rust."

parse-it-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "parse-it-macros"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A user-friendly, opinionated parser generator for Rust."
77

88
[dependencies]
9-
parse-it-codegen = { version = "0.1.0", path = "../parse-it-codegen" }
9+
parse-it-codegen = { version = "0.2.0", path = "../parse-it-codegen" }
1010
proc-macro2 = { workspace = true }
1111
quote = { workspace = true }
1212
syn = { workspace = true }

parse-it/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "parse-it"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "A user-friendly, opinionated parser generator for Rust."
66
license = "Apache-2.0"
77

88
[dependencies]
9-
parse-it-macros = { version = "0.1.0", path = "../parse-it-macros" }
9+
parse-it-macros = { version = "0.1.1", path = "../parse-it-macros" }
1010
rustc-hash = { workspace = true }

0 commit comments

Comments
 (0)