diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f5b8ccd..24c3077 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,9 +1,9 @@ { - "crates/tokf-common": "0.2.42", - "crates/tokf-filter": "0.2.42", - "crates/tokf-cli": "0.2.42", - "crates/tokf-server": "0.2.42", - "crates/tokf-server/generated": "0.2.42", - "crates/tokf-hook-types": "0.2.42", - "crates/e2e-tests": "0.1.30" + "crates/tokf-common": "0.2.43", + "crates/tokf-filter": "0.2.43", + "crates/tokf-cli": "0.2.43", + "crates/tokf-server": "0.2.43", + "crates/tokf-server/generated": "0.2.43", + "crates/tokf-hook-types": "0.2.43", + "crates/e2e-tests": "0.1.31" } diff --git a/Cargo.lock b/Cargo.lock index 6a84d40..746ab6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -986,7 +986,7 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "e2e-tests" -version = "0.1.30" +version = "0.1.31" dependencies = [ "anyhow", "axum", @@ -3719,7 +3719,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokf" -version = "0.2.42" +version = "0.2.43" dependencies = [ "anyhow", "clap", @@ -3758,7 +3758,7 @@ dependencies = [ [[package]] name = "tokf-common" -version = "0.2.42" +version = "0.2.43" dependencies = [ "regex", "serde", @@ -3771,7 +3771,7 @@ dependencies = [ [[package]] name = "tokf-filter" -version = "0.2.42" +version = "0.2.43" dependencies = [ "anyhow", "mlua", @@ -3785,14 +3785,14 @@ dependencies = [ [[package]] name = "tokf-hook-types" -version = "0.2.42" +version = "0.2.43" dependencies = [ "serde", ] [[package]] name = "tokf-server" -version = "0.2.42" +version = "0.2.43" dependencies = [ "anyhow", "async-trait", diff --git a/crates/e2e-tests/Cargo.toml b/crates/e2e-tests/Cargo.toml index 5d4c94a..31edc01 100644 --- a/crates/e2e-tests/Cargo.toml +++ b/crates/e2e-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e-tests" -version = "0.1.30" +version = "0.1.31" edition.workspace = true license.workspace = true publish = false diff --git a/crates/tokf-cli/CHANGELOG.md b/crates/tokf-cli/CHANGELOG.md index 3ece2a0..b1e7384 100644 --- a/crates/tokf-cli/CHANGELOG.md +++ b/crates/tokf-cli/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/tokf-v0.2.42...tokf-v0.2.43) (2026-04-29) + + +### Bug Fixes + +* **rewrite:** preserve newline separators in compound commands ([#356](https://github.com/mpecan/tokf/issues/356)) ([dc5de0f](https://github.com/mpecan/tokf/commit/dc5de0f7958cc20487d465d812499449d47e6364)) +* **rewrite:** protect remote-shell argv from regex rewrites ([#348](https://github.com/mpecan/tokf/issues/348)) ([08b86ab](https://github.com/mpecan/tokf/commit/08b86ab9b3347093a21241dd7f706a8d1a17ce65)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.42 to 0.2.43 + * tokf-filter bumped from 0.2.42 to 0.2.43 + * tokf-hook-types bumped from 0.2.42 to 0.2.43 + ## [0.2.42](https://github.com/mpecan/tokf/compare/tokf-v0.2.41...tokf-v0.2.42) (2026-04-27) diff --git a/crates/tokf-cli/Cargo.toml b/crates/tokf-cli/Cargo.toml index 22b4493..0d02db8 100644 --- a/crates/tokf-cli/Cargo.toml +++ b/crates/tokf-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf" -version = "0.2.42" +version = "0.2.43" 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.42", features = ["validation"] } -tokf-filter = { path = "../tokf-filter", version = "0.2.42" } -tokf-hook-types = { path = "../tokf-hook-types", version = "0.2.42" } +tokf-common = { path = "../tokf-common", version = "0.2.43", features = ["validation"] } +tokf-filter = { path = "../tokf-filter", version = "0.2.43" } +tokf-hook-types = { path = "../tokf-hook-types", version = "0.2.43" } 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 e75e920..579a906 100644 --- a/crates/tokf-common/CHANGELOG.md +++ b/crates/tokf-common/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/tokf-common-v0.2.42...tokf-common-v0.2.43) (2026-04-29) + + +### Miscellaneous + +* **tokf-common:** Synchronize workspace versions + ## [0.2.42](https://github.com/mpecan/tokf/compare/tokf-common-v0.2.41...tokf-common-v0.2.42) (2026-04-27) diff --git a/crates/tokf-common/Cargo.toml b/crates/tokf-common/Cargo.toml index 81f0a50..f054ed6 100644 --- a/crates/tokf-common/Cargo.toml +++ b/crates/tokf-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-common" -version = "0.2.42" +version = "0.2.43" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/tokf-filter/CHANGELOG.md b/crates/tokf-filter/CHANGELOG.md index 3423102..718eef5 100644 --- a/crates/tokf-filter/CHANGELOG.md +++ b/crates/tokf-filter/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/tokf-filter-v0.2.42...tokf-filter-v0.2.43) (2026-04-29) + + +### Miscellaneous + +* **tokf-filter:** Synchronize workspace versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.42 to 0.2.43 + ## [0.2.42](https://github.com/mpecan/tokf/compare/tokf-filter-v0.2.41...tokf-filter-v0.2.42) (2026-04-27) diff --git a/crates/tokf-filter/Cargo.toml b/crates/tokf-filter/Cargo.toml index 26080f4..9820bf4 100644 --- a/crates/tokf-filter/Cargo.toml +++ b/crates/tokf-filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-filter" -version = "0.2.42" +version = "0.2.43" 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.42" } +tokf-common = { path = "../tokf-common", version = "0.2.43" } 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 359d65d..9d4c567 100644 --- a/crates/tokf-hook-types/CHANGELOG.md +++ b/crates/tokf-hook-types/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/tokf-hook-types-v0.2.42...tokf-hook-types-v0.2.43) (2026-04-29) + + +### Bug Fixes + +* **rewrite:** protect remote-shell argv from regex rewrites ([#348](https://github.com/mpecan/tokf/issues/348)) ([08b86ab](https://github.com/mpecan/tokf/commit/08b86ab9b3347093a21241dd7f706a8d1a17ce65)) + ## [0.2.42](https://github.com/mpecan/tokf/compare/tokf-hook-types-v0.2.41...tokf-hook-types-v0.2.42) (2026-04-27) diff --git a/crates/tokf-hook-types/Cargo.toml b/crates/tokf-hook-types/Cargo.toml index 6942f3a..3d541e2 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.42" +version = "0.2.43" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/tokf-server/CHANGELOG.md b/crates/tokf-server/CHANGELOG.md index f772d0f..2410d6e 100644 --- a/crates/tokf-server/CHANGELOG.md +++ b/crates/tokf-server/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/tokf-server-v0.2.42...tokf-server-v0.2.43) (2026-04-29) + + +### Miscellaneous + +* **tokf-server:** Synchronize workspace versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tokf-common bumped from 0.2.42 to 0.2.43 + * tokf-filter bumped from 0.2.42 to 0.2.43 + ## [0.2.42](https://github.com/mpecan/tokf/compare/tokf-server-v0.2.41...tokf-server-v0.2.42) (2026-04-27) diff --git a/crates/tokf-server/Cargo.toml b/crates/tokf-server/Cargo.toml index 41bf3f0..f874322 100644 --- a/crates/tokf-server/Cargo.toml +++ b/crates/tokf-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokf-server" -version = "0.2.42" +version = "0.2.43" 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.42", features = ["validation"] } -tokf-filter = { path = "../tokf-filter", version = "0.2.42" } +tokf-common = { path = "../tokf-common", version = "0.2.43", features = ["validation"] } +tokf-filter = { path = "../tokf-filter", version = "0.2.43" } toml = "1.0" bytes = "1" diff --git a/crates/tokf-server/generated/CHANGELOG.md b/crates/tokf-server/generated/CHANGELOG.md index 13c21a4..bc0c5e7 100644 --- a/crates/tokf-server/generated/CHANGELOG.md +++ b/crates/tokf-server/generated/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.43](https://github.com/mpecan/tokf/compare/catalog-types-v0.2.42...catalog-types-v0.2.43) (2026-04-29) + + +### Miscellaneous + +* **catalog-types:** Synchronize workspace versions + ## [0.2.42](https://github.com/mpecan/tokf/compare/catalog-types-v0.2.41...catalog-types-v0.2.42) (2026-04-27) diff --git a/crates/tokf-server/generated/package.json b/crates/tokf-server/generated/package.json index 3dc37b5..3820db7 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.42", + "version": "0.2.43", "description": "TypeScript types for the tokf filter catalog (auto-generated from Rust via ts-rs)", "type": "module", "exports": {