diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4a0cb9a..8f3d04b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,9 +1,9 @@ { - "crates/tokf-common": "0.2.47", - "crates/tokf-filter": "0.2.47", - "crates/tokf-cli": "0.2.47", - "crates/tokf-server": "0.2.47", - "crates/tokf-server/generated": "0.2.47", - "crates/tokf-hook-types": "0.2.47", - "crates/e2e-tests": "0.1.35" + "crates/tokf-common": "0.2.48", + "crates/tokf-filter": "0.2.48", + "crates/tokf-cli": "0.2.48", + "crates/tokf-server": "0.2.48", + "crates/tokf-server/generated": "0.2.48", + "crates/tokf-hook-types": "0.2.48", + "crates/e2e-tests": "0.1.36" } diff --git a/Cargo.lock b/Cargo.lock index b2525fe..505b442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -986,7 +986,7 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "e2e-tests" -version = "0.1.35" +version = "0.1.36" dependencies = [ "anyhow", "axum", @@ -3708,7 +3708,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokf" -version = "0.2.47" +version = "0.2.48" dependencies = [ "anyhow", "clap", @@ -3747,7 +3747,7 @@ dependencies = [ [[package]] name = "tokf-common" -version = "0.2.47" +version = "0.2.48" dependencies = [ "regex", "serde", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "tokf-filter" -version = "0.2.47" +version = "0.2.48" dependencies = [ "anyhow", "mlua", @@ -3774,14 +3774,14 @@ dependencies = [ [[package]] name = "tokf-hook-types" -version = "0.2.47" +version = "0.2.48" dependencies = [ "serde", ] [[package]] name = "tokf-server" -version = "0.2.47" +version = "0.2.48" dependencies = [ "anyhow", "async-trait", diff --git a/crates/e2e-tests/Cargo.toml b/crates/e2e-tests/Cargo.toml index 95c4406..70375a7 100644 --- a/crates/e2e-tests/Cargo.toml +++ b/crates/e2e-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e-tests" -version = "0.1.35" +version = "0.1.36" edition.workspace = true license.workspace = true publish = false diff --git a/crates/tokf-cli/CHANGELOG.md b/crates/tokf-cli/CHANGELOG.md index 178d16e..e380722 100644 --- a/crates/tokf-cli/CHANGELOG.md +++ b/crates/tokf-cli/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/tokf-v0.2.47...tokf-v0.2.48) (2026-06-18) + + +### Bug Fixes + +* **rewrite:** preserve newline after operator in nested-list segments ([#393](https://github.com/mpecan/tokf/issues/393)) ([e9c35c8](https://github.com/mpecan/tokf/commit/e9c35c88212d5320343d55ae634efa8f86031066)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.47 to 0.2.48 + * tokf-filter bumped from 0.2.47 to 0.2.48 + * tokf-hook-types bumped from 0.2.47 to 0.2.48 + ## [0.2.47](https://github.com/mpecan/tokf/compare/tokf-v0.2.46...tokf-v0.2.47) (2026-06-14) diff --git a/crates/tokf-cli/Cargo.toml b/crates/tokf-cli/Cargo.toml index 825bc44..07cad44 100644 --- a/crates/tokf-cli/Cargo.toml +++ b/crates/tokf-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf" -version = "0.2.47" +version = "0.2.48" edition.workspace = true license.workspace = true repository.workspace = true @@ -14,9 +14,9 @@ name = "tokf" path = "src/main.rs" [dependencies] -tokf-common = { path = "../tokf-common", version = "0.2.47", features = ["validation"] } -tokf-filter = { path = "../tokf-filter", version = "0.2.47" } -tokf-hook-types = { path = "../tokf-hook-types", version = "0.2.47" } +tokf-common = { path = "../tokf-common", version = "0.2.48", features = ["validation"] } +tokf-filter = { path = "../tokf-filter", version = "0.2.48" } +tokf-hook-types = { path = "../tokf-hook-types", version = "0.2.48" } clap = { version = "4", features = ["derive", "env"] } toml = "1.0" serde = { version = "1", features = ["derive"] } diff --git a/crates/tokf-common/CHANGELOG.md b/crates/tokf-common/CHANGELOG.md index 12edcfe..8003c6e 100644 --- a/crates/tokf-common/CHANGELOG.md +++ b/crates/tokf-common/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/tokf-common-v0.2.47...tokf-common-v0.2.48) (2026-06-18) + + +### Miscellaneous + +* **tokf-common:** Synchronize workspace versions + ## [0.2.47](https://github.com/mpecan/tokf/compare/tokf-common-v0.2.46...tokf-common-v0.2.47) (2026-06-14) diff --git a/crates/tokf-common/Cargo.toml b/crates/tokf-common/Cargo.toml index 93bbd7c..e77b2d5 100644 --- a/crates/tokf-common/Cargo.toml +++ b/crates/tokf-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-common" -version = "0.2.47" +version = "0.2.48" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/tokf-filter/CHANGELOG.md b/crates/tokf-filter/CHANGELOG.md index 1b5cd10..3d88cc4 100644 --- a/crates/tokf-filter/CHANGELOG.md +++ b/crates/tokf-filter/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/tokf-filter-v0.2.47...tokf-filter-v0.2.48) (2026-06-18) + + +### Miscellaneous + +* **tokf-filter:** Synchronize workspace versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.47 to 0.2.48 + ## [0.2.47](https://github.com/mpecan/tokf/compare/tokf-filter-v0.2.46...tokf-filter-v0.2.47) (2026-06-14) diff --git a/crates/tokf-filter/Cargo.toml b/crates/tokf-filter/Cargo.toml index 32b5192..dbfe5f8 100644 --- a/crates/tokf-filter/Cargo.toml +++ b/crates/tokf-filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-filter" -version = "0.2.47" +version = "0.2.48" edition.workspace = true license.workspace = true repository.workspace = true @@ -10,7 +10,7 @@ keywords = ["llm", "cli", "tokens", "ai", "context-window"] categories = ["command-line-utilities", "development-tools"] [dependencies] -tokf-common = { path = "../tokf-common", version = "0.2.47" } +tokf-common = { path = "../tokf-common", version = "0.2.48" } regex = "1" anyhow = "1" serde = { version = "1", features = ["derive"] } diff --git a/crates/tokf-hook-types/CHANGELOG.md b/crates/tokf-hook-types/CHANGELOG.md index 4d73ea5..f07a5ac 100644 --- a/crates/tokf-hook-types/CHANGELOG.md +++ b/crates/tokf-hook-types/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/tokf-hook-types-v0.2.47...tokf-hook-types-v0.2.48) (2026-06-18) + + +### Miscellaneous + +* **tokf-hook-types:** Synchronize workspace versions + ## [0.2.47](https://github.com/mpecan/tokf/compare/tokf-hook-types-v0.2.46...tokf-hook-types-v0.2.47) (2026-06-14) diff --git a/crates/tokf-hook-types/Cargo.toml b/crates/tokf-hook-types/Cargo.toml index c49119f..e21bd04 100644 --- a/crates/tokf-hook-types/Cargo.toml +++ b/crates/tokf-hook-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-hook-types" -version = "0.2.47" +version = "0.2.48" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/tokf-server/CHANGELOG.md b/crates/tokf-server/CHANGELOG.md index f6fc10a..9be5e86 100644 --- a/crates/tokf-server/CHANGELOG.md +++ b/crates/tokf-server/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/tokf-server-v0.2.47...tokf-server-v0.2.48) (2026-06-18) + + +### Miscellaneous + +* **tokf-server:** Synchronize workspace versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.47 to 0.2.48 + * tokf-filter bumped from 0.2.47 to 0.2.48 + ## [0.2.47](https://github.com/mpecan/tokf/compare/tokf-server-v0.2.46...tokf-server-v0.2.47) (2026-06-14) diff --git a/crates/tokf-server/Cargo.toml b/crates/tokf-server/Cargo.toml index 59b6994..5bd170a 100644 --- a/crates/tokf-server/Cargo.toml +++ b/crates/tokf-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-server" -version = "0.2.47" +version = "0.2.48" edition.workspace = true license.workspace = true repository.workspace = true @@ -33,8 +33,8 @@ hex = "0.4" async-trait = "0.1" chrono = { version = "0.4", features = ["serde"] } aws-sdk-s3 = { version = "1", default-features = false, features = ["behavior-version-latest", "rt-tokio", "default-https-client"] } -tokf-common = { path = "../tokf-common", version = "0.2.47", features = ["validation"] } -tokf-filter = { path = "../tokf-filter", version = "0.2.47" } +tokf-common = { path = "../tokf-common", version = "0.2.48", features = ["validation"] } +tokf-filter = { path = "../tokf-filter", version = "0.2.48" } toml = "1.0" bytes = "1" diff --git a/crates/tokf-server/generated/CHANGELOG.md b/crates/tokf-server/generated/CHANGELOG.md index bfa860a..35aa2d5 100644 --- a/crates/tokf-server/generated/CHANGELOG.md +++ b/crates/tokf-server/generated/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.48](https://github.com/mpecan/tokf/compare/catalog-types-v0.2.47...catalog-types-v0.2.48) (2026-06-18) + + +### Miscellaneous + +* **catalog-types:** Synchronize workspace versions + ## [0.2.47](https://github.com/mpecan/tokf/compare/catalog-types-v0.2.46...catalog-types-v0.2.47) (2026-06-14) diff --git a/crates/tokf-server/generated/package.json b/crates/tokf-server/generated/package.json index aa97547..8ab013f 100644 --- a/crates/tokf-server/generated/package.json +++ b/crates/tokf-server/generated/package.json @@ -1,6 +1,6 @@ { "name": "@tokf/catalog-types", - "version": "0.2.47", + "version": "0.2.48", "description": "TypeScript types for the tokf filter catalog (auto-generated from Rust via ts-rs)", "type": "module", "exports": {