From 89e649cd547b2ae3dbacb85bbf2f6db5e148f973 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:40:03 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 4 ++-- sql-insight-cli/CHANGELOG.md | 15 +++++++++++++++ sql-insight-cli/Cargo.toml | 4 ++-- sql-insight/CHANGELOG.md | 7 +++++++ sql-insight/Cargo.toml | 2 +- 5 files changed, 27 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ba3493..7efdb0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -921,7 +921,7 @@ dependencies = [ [[package]] name = "sql-insight" -version = "0.3.0" +version = "0.3.1" dependencies = [ "serde", "sqlparser", @@ -931,7 +931,7 @@ dependencies = [ [[package]] name = "sql-insight-cli" -version = "0.2.1" +version = "0.2.2" dependencies = [ "assert_cmd", "clap", diff --git a/sql-insight-cli/CHANGELOG.md b/sql-insight-cli/CHANGELOG.md index e1528f3..a8b8cee 100644 --- a/sql-insight-cli/CHANGELOG.md +++ b/sql-insight-cli/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/takaebato/sql-insight/compare/sql-insight-cli-v0.2.1...sql-insight-cli-v0.2.2) - 2026-07-01 + +### Added + +- *(cli)* prebuilt binary distribution — cargo binstall, completions, man, and provenance ([#53](https://github.com/takaebato/sql-insight/pull/53)) by @takaebato + +### Fixed + +- *(deps)* update rust crate clap_mangen to 0.3 ([#54](https://github.com/takaebato/sql-insight/pull/54)) by @renovate[bot] + +### Other Changes + +- changelog breaking-change workflow, version-bump docs, and keywords ([#51](https://github.com/takaebato/sql-insight/pull/51)) by @takaebato +- tidy keywords, README versions, and add a version-sync check ([#46](https://github.com/takaebato/sql-insight/pull/46)) by @takaebato + ## [0.2.1](https://github.com/takaebato/sql-insight/compare/sql-insight-cli-v0.2.0...sql-insight-cli-v0.2.1) - 2026-06-28 ### Added diff --git a/sql-insight-cli/Cargo.toml b/sql-insight-cli/Cargo.toml index acb1d2e..e42e5ca 100644 --- a/sql-insight-cli/Cargo.toml +++ b/sql-insight-cli/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" # Bump the MINOR by hand (pre-1.0 breaking) when the CLI's output *format* changes # — stdout shape or `--format json` structure — vs a value-only change (patch). # Manual: tooling sees the API surface, not output/behaviour. -version = "0.2.1" +version = "0.2.2" edition = { workspace = true } homepage = { workspace = true } repository = { workspace = true } @@ -43,7 +43,7 @@ doc = false # A breaking sql-insight bump (one the current caret requirement won't accept) # means: update the requirement + bump the CLI minor by hand. Compatible bumps # the caret already accepts flow automatically — no CLI release. -sql-insight = { path = "../sql-insight", version = "0.3.0", features = ["serde"] } +sql-insight = { path = "../sql-insight", version = "0.3.1", features = ["serde"] } clap = { version = "4.5", features = ["derive"] } clap_complete = "4.5" clap_mangen = "0.3" diff --git a/sql-insight/CHANGELOG.md b/sql-insight/CHANGELOG.md index 592c164..da96dc9 100644 --- a/sql-insight/CHANGELOG.md +++ b/sql-insight/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/takaebato/sql-insight/compare/sql-insight-v0.3.0...sql-insight-v0.3.1) - 2026-07-01 + +### Other Changes + +- changelog breaking-change workflow, version-bump docs, and keywords ([#51](https://github.com/takaebato/sql-insight/pull/51)) by @takaebato +- tidy keywords, README versions, and add a version-sync check ([#46](https://github.com/takaebato/sql-insight/pull/46)) by @takaebato + ## [0.3.0](https://github.com/takaebato/sql-insight/compare/v0.2.0...v0.3.0) - 2026-06-28 ### Added diff --git a/sql-insight/Cargo.toml b/sql-insight/Cargo.toml index e21d2bb..3ec2af9 100644 --- a/sql-insight/Cargo.toml +++ b/sql-insight/Cargo.toml @@ -10,7 +10,7 @@ include = [ "LICENSE.txt", ] readme = "README.md" -version = "0.3.0" +version = "0.3.1" edition = { workspace = true } rust-version = "1.89.0" homepage = { workspace = true }