diff --git a/.release-please/.release-please-manifest.json b/.release-please/.release-please-manifest.json index 18270f8..a540dea 100644 --- a/.release-please/.release-please-manifest.json +++ b/.release-please/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "crates/jlabel-question": "0.1.8", - "crates/jlabel": "0.1.8" + "crates/jlabel-question": "0.1.9", + "crates/jlabel": "0.1.9" } diff --git a/Cargo.lock b/Cargo.lock index 9c0c1ce..f74f729 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "jlabel" -version = "0.1.8" +version = "0.1.9" dependencies = [ "serde", "thiserror", @@ -21,7 +21,7 @@ dependencies = [ [[package]] name = "jlabel-question" -version = "0.1.8" +version = "0.1.9" dependencies = [ "jlabel", "regex-automata", diff --git a/crates/jlabel-question/CHANGELOG.md b/crates/jlabel-question/CHANGELOG.md index 76556c9..7602ce0 100644 --- a/crates/jlabel-question/CHANGELOG.md +++ b/crates/jlabel-question/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.9](https://github.com/jpreprocess/jlabel/compare/jlabel-question-v0.1.8...jlabel-question-v0.1.9) (2026-05-29) + + +### Miscellaneous Chores + +* trigger release 0.1.9 ([79c4155](https://github.com/jpreprocess/jlabel/commit/79c4155f2d0fa7a92baf20785595fdadeea969cc)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * jlabel bumped from 0.1.8 to 0.1.9 + ## [0.1.8](https://github.com/jpreprocess/jlabel/compare/jlabel-question-v0.1.7...jlabel-question-v0.1.8) (2026-05-28) diff --git a/crates/jlabel-question/Cargo.toml b/crates/jlabel-question/Cargo.toml index 48971e1..b6e2ea5 100644 --- a/crates/jlabel-question/Cargo.toml +++ b/crates/jlabel-question/Cargo.toml @@ -3,7 +3,7 @@ name = "jlabel-question" description = "HTS-style full-context label question parser and matcher" documentation = "https://docs.rs/jlabel-question" -version = "0.1.8" +version = "0.1.9" edition.workspace = true rust-version.workspace = true @@ -21,7 +21,7 @@ regex = ["dep:regex-automata", "dep:regex-syntax"] serde = ["dep:serde"] [dependencies] -jlabel = { path = "../jlabel", version = "0.1.8" } +jlabel = { path = "../jlabel", version = "0.1.9" } thiserror.workspace = true regex-automata = { version = "0.4", optional = true } diff --git a/crates/jlabel-question/README.md b/crates/jlabel-question/README.md index dce5157..552af0a 100644 --- a/crates/jlabel-question/README.md +++ b/crates/jlabel-question/README.md @@ -12,7 +12,7 @@ Put the following in Cargo.toml ```toml [dependencies] -jlabel-question = "0.1.8" +jlabel-question = "0.1.9" ``` diff --git a/crates/jlabel/CHANGELOG.md b/crates/jlabel/CHANGELOG.md index a944aba..85e2e07 100644 --- a/crates/jlabel/CHANGELOG.md +++ b/crates/jlabel/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.9](https://github.com/jpreprocess/jlabel/compare/jlabel-v0.1.8...jlabel-v0.1.9) (2026-05-29) + + +### Miscellaneous Chores + +* trigger release 0.1.9 ([79c4155](https://github.com/jpreprocess/jlabel/commit/79c4155f2d0fa7a92baf20785595fdadeea969cc)) + ## [0.1.8](https://github.com/jpreprocess/jlabel/compare/jlabel-v0.1.7...jlabel-v0.1.8) (2026-05-28) diff --git a/crates/jlabel/Cargo.toml b/crates/jlabel/Cargo.toml index 7a3a4ba..5fdfe77 100644 --- a/crates/jlabel/Cargo.toml +++ b/crates/jlabel/Cargo.toml @@ -3,7 +3,7 @@ name = "jlabel" description = "HTS-style full-context label structure and parser/serializer from/to string" documentation = "https://docs.rs/jlabel" -version = "0.1.8" +version = "0.1.9" edition.workspace = true rust-version.workspace = true diff --git a/crates/jlabel/README.md b/crates/jlabel/README.md index 46ea53a..d3fd915 100644 --- a/crates/jlabel/README.md +++ b/crates/jlabel/README.md @@ -10,7 +10,7 @@ Put the following in Cargo.toml ```toml [dependencies] -jlabel = "0.1.8" +jlabel = "0.1.9" ```