diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d8f0a47..ad6df707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.2.0](https://github.com/liblaf/ai-commit-cli/compare/v0.1.0...v0.2.0) (2023-11-25) + +### Features + +- add support for prompt file in commit command ([0d48d56](https://github.com/liblaf/ai-commit-cli/commit/0d48d568c75dd50cbf5cd9a2d394caa48755ad8d)) +- **cmd:** add commit and complete subcommands ([1db4f22](https://github.com/liblaf/ai-commit-cli/commit/1db4f22355efacd6928c130cb004dcb9ce876ad8)) +- **cmd:** add tab-completion support for fish shell ([0a73ec2](https://github.com/liblaf/ai-commit-cli/commit/0a73ec2433bd2b0d4191cf20e231874f744e1bc8)) + +### Bug Fixes + +- **log:** fix type inference issue in log.rs ([bc42c74](https://github.com/liblaf/ai-commit-cli/commit/bc42c740e08d71be103974de50c9d70c0184f530)) + ## [0.1.0](https://github.com/liblaf/ai-commit-cli/compare/v0.0.0...v0.1.0) (2023-11-18) ### Features diff --git a/Cargo.lock b/Cargo.lock index f2eb55a9..da4d1b2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ dependencies = [ [[package]] name = "ai-commit-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index 60176c3d..e7c48949 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,4 +20,4 @@ license = "MIT" name = "ai-commit-cli" readme = "README.md" repository = "https://github.com/liblaf/ai-commit-cli" -version = "0.1.0" +version = "0.2.0"