Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions sql-insight-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions sql-insight-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -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"
Expand Down
7 changes: 7 additions & 0 deletions sql-insight/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sql-insight/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down