diff --git a/.release-please/.release-please-manifest.json b/.release-please/.release-please-manifest.json index 5ac1100..18270f8 100644 --- a/.release-please/.release-please-manifest.json +++ b/.release-please/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "crates/jlabel-question": "0.1.7", - "crates/jlabel": "0.1.7" + "crates/jlabel-question": "0.1.8", + "crates/jlabel": "0.1.8" } diff --git a/Cargo.lock b/Cargo.lock index 97ef12b..9c0c1ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "jlabel" -version = "0.1.7" +version = "0.1.8" dependencies = [ "serde", "thiserror", @@ -21,7 +21,7 @@ dependencies = [ [[package]] name = "jlabel-question" -version = "0.1.7" +version = "0.1.8" dependencies = [ "jlabel", "regex-automata", diff --git a/crates/jlabel-question/CHANGELOG.md b/crates/jlabel-question/CHANGELOG.md index 2efcf4f..76556c9 100644 --- a/crates/jlabel-question/CHANGELOG.md +++ b/crates/jlabel-question/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.8](https://github.com/jpreprocess/jlabel/compare/jlabel-question-v0.1.7...jlabel-question-v0.1.8) (2026-05-28) + + +### Miscellaneous Chores + +* trigger release 0.1.8 ([e6c4635](https://github.com/jpreprocess/jlabel/commit/e6c46353b22676f1846120e13f64ca5cfbc07f84)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * jlabel bumped from 0.1.7 to 0.1.8 + ## [0.1.7](https://github.com/jpreprocess/jlabel/compare/jlabel-question-v0.1.6...jlabel-question-v0.1.7) (2025-12-27) diff --git a/crates/jlabel-question/Cargo.toml b/crates/jlabel-question/Cargo.toml index c3392ba..48971e1 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.7" +version = "0.1.8" 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.7" } +jlabel = { path = "../jlabel", version = "0.1.8" } 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 9657838..dce5157 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.7" +jlabel-question = "0.1.8" ``` diff --git a/crates/jlabel/CHANGELOG.md b/crates/jlabel/CHANGELOG.md index 8ea54e5..a944aba 100644 --- a/crates/jlabel/CHANGELOG.md +++ b/crates/jlabel/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.8](https://github.com/jpreprocess/jlabel/compare/jlabel-v0.1.7...jlabel-v0.1.8) (2026-05-28) + + +### Miscellaneous Chores + +* trigger release 0.1.8 ([e6c4635](https://github.com/jpreprocess/jlabel/commit/e6c46353b22676f1846120e13f64ca5cfbc07f84)) + ## [0.1.7](https://github.com/jpreprocess/jlabel/compare/jlabel-v0.1.6...jlabel-v0.1.7) (2025-12-27) diff --git a/crates/jlabel/Cargo.toml b/crates/jlabel/Cargo.toml index dbca9fd..7a3a4ba 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.7" +version = "0.1.8" edition.workspace = true rust-version.workspace = true diff --git a/crates/jlabel/README.md b/crates/jlabel/README.md index 5b43d7f..46ea53a 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.7" +jlabel = "0.1.8" ```