diff --git a/Cargo.lock b/Cargo.lock index 69648e6..26e6838 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2101,7 +2101,7 @@ dependencies = [ [[package]] name = "resq-ai" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "dirs", @@ -2114,7 +2114,7 @@ dependencies = [ [[package]] name = "resq-bin" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "capstone", @@ -2133,7 +2133,7 @@ dependencies = [ [[package]] name = "resq-clean" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "clap", @@ -2147,7 +2147,7 @@ dependencies = [ [[package]] name = "resq-cli" -version = "0.3.2" +version = "0.4.0" dependencies = [ "aho-corasick", "anyhow", @@ -2186,7 +2186,7 @@ dependencies = [ [[package]] name = "resq-flame" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "chrono", @@ -2204,7 +2204,7 @@ dependencies = [ [[package]] name = "resq-perf" -version = "0.1.18" +version = "0.1.19" dependencies = [ "addr2line", "anyhow", @@ -2220,7 +2220,7 @@ dependencies = [ [[package]] name = "resq-tui" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 3b588eb..c1dc54c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.1.18" +version = "0.1.19" license = "Apache-2.0" edition = "2021" repository = "https://github.com/resq-software/crates" @@ -38,7 +38,7 @@ once_cell = "1.21" ratatui = { version = "0.30.0", default-features = false, features = ["crossterm", "macros"] } regex = "1.12" reqwest = { version = "0.13.2", features = ["blocking", "json", "rustls", "multipart", "stream"] } -resq-tui = { path = "crates/resq-tui", version = "0.1.10" } +resq-tui = { path = "crates/resq-tui", version = "0.1.11" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tempfile = "3" @@ -48,7 +48,7 @@ toml = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } dirs = "6.0" -resq-ai = { path = "crates/resq-ai", version = "0.1.0" } +resq-ai = { path = "crates/resq-ai", version = "0.1.1" } walkdir = "2.5" [workspace.lints.rust] diff --git a/crates/resq-ai/CHANGELOG.md b/crates/resq-ai/CHANGELOG.md new file mode 100644 index 0000000..ee4ce93 --- /dev/null +++ b/crates/resq-ai/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.1.1](https://github.com/resq-software/crates/releases/tag/0.1.1) - 2026-07-27 + +### Fixed + +- Resolve audit ship-blockers across crates workspace ([#124](https://github.com/resq-software/crates/pull/124)) + + diff --git a/crates/resq-ai/Cargo.toml b/crates/resq-ai/Cargo.toml index 47e3d83..23cb61c 100644 --- a/crates/resq-ai/Cargo.toml +++ b/crates/resq-ai/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "resq-ai" -version = "0.1.0" +version = "0.1.1" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/resq-bin/CHANGELOG.md b/crates/resq-bin/CHANGELOG.md index 90617af..853249e 100644 --- a/crates/resq-bin/CHANGELOG.md +++ b/crates/resq-bin/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.19](https://github.com/resq-software/crates/releases/tag/0.1.19) - 2026-07-27 + +### Miscellaneous + +- Update Cargo.lock dependencies + + + ## [0.1.18](https://github.com/resq-software/crates/releases/tag/0.1.18) - 2026-07-06 diff --git a/crates/resq-clean/CHANGELOG.md b/crates/resq-clean/CHANGELOG.md index bb77867..603de6d 100644 --- a/crates/resq-clean/CHANGELOG.md +++ b/crates/resq-clean/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.19](https://github.com/resq-software/crates/releases/tag/0.1.19) - 2026-07-27 + +### Miscellaneous + +- Update Cargo.lock dependencies + + + ## [0.1.18](https://github.com/resq-software/crates/releases/tag/0.1.18) - 2026-07-06 diff --git a/crates/resq-cli/CHANGELOG.md b/crates/resq-cli/CHANGELOG.md index ee8b926..f4619ef 100644 --- a/crates/resq-cli/CHANGELOG.md +++ b/crates/resq-cli/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0](https://github.com/resq-software/crates/releases/tag/0.4.0) - 2026-07-27 + +### Miscellaneous + +- Remove resq-deploy, resq-health, resq-logs crates ([#139](https://github.com/resq-software/crates/pull/139)) + + + ## [0.3.2](https://github.com/resq-software/crates/releases/tag/0.3.2) - 2026-07-06 diff --git a/crates/resq-cli/Cargo.toml b/crates/resq-cli/Cargo.toml index e6497f8..ce21812 100644 --- a/crates/resq-cli/Cargo.toml +++ b/crates/resq-cli/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "resq-cli" -version = "0.3.2" +version = "0.4.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/resq-flame/CHANGELOG.md b/crates/resq-flame/CHANGELOG.md index b998cf6..ad8c888 100644 --- a/crates/resq-flame/CHANGELOG.md +++ b/crates/resq-flame/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.19](https://github.com/resq-software/crates/releases/tag/0.1.19) - 2026-07-27 + +### Miscellaneous + +- Update Cargo.lock dependencies + + + ## [0.1.18](https://github.com/resq-software/crates/releases/tag/0.1.18) - 2026-07-06 diff --git a/crates/resq-perf/CHANGELOG.md b/crates/resq-perf/CHANGELOG.md index 6b49d19..8a52f7b 100644 --- a/crates/resq-perf/CHANGELOG.md +++ b/crates/resq-perf/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.19](https://github.com/resq-software/crates/releases/tag/0.1.19) - 2026-07-27 + +### Miscellaneous + +- Remove resq-deploy, resq-health, resq-logs crates ([#139](https://github.com/resq-software/crates/pull/139)) + + + ## [0.1.18](https://github.com/resq-software/crates/releases/tag/0.1.18) - 2026-07-06 diff --git a/crates/resq-tui/CHANGELOG.md b/crates/resq-tui/CHANGELOG.md index 0c79651..88025aa 100644 --- a/crates/resq-tui/CHANGELOG.md +++ b/crates/resq-tui/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/resq-software/crates/releases/tag/0.1.11) - 2026-07-27 + +### Miscellaneous + +- Remove resq-deploy, resq-health, resq-logs crates ([#139](https://github.com/resq-software/crates/pull/139)) + + + ## [0.1.10](https://github.com/resq-software/crates/releases/tag/0.1.10) - 2026-07-06 diff --git a/crates/resq-tui/Cargo.toml b/crates/resq-tui/Cargo.toml index 6398c8a..6bd37ce 100644 --- a/crates/resq-tui/Cargo.toml +++ b/crates/resq-tui/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "resq-tui" -version = "0.1.10" +version = "0.1.11" edition.workspace = true license.workspace = true repository.workspace = true