diff --git a/CHANGELOG.md b/CHANGELOG.md index 4df6babf..b44a54dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.6.0](https://github.com/liblaf/ai-commit-cli/compare/v0.5.0...v0.6.0) (2024-01-26) + +### Features + +- add message sanitization in commit module ([62b3f56](https://github.com/liblaf/ai-commit-cli/commit/62b3f563064cb7f6abc857a9deed3884bd617a7e)) +- **ci:** switch to using a single workflow for testing and checking ([e4bcfc2](https://github.com/liblaf/ai-commit-cli/commit/e4bcfc253aa01edb64b9f28f3c178ec1558d3452)) +- **ci:** update release workflow to use custom action ([56a0f39](https://github.com/liblaf/ai-commit-cli/commit/56a0f395c0a87b9501f1c66e3e6eca59d9115d3b)) +- update default model to gpt-3.5-turbo-1106 ([9ba6c06](https://github.com/liblaf/ai-commit-cli/commit/9ba6c06ab73f04b3b5b97a65cb7eaa588e7e1e6c)) + +### Bug Fixes + +- **commit:** fix options for exclude and include ([47fbe99](https://github.com/liblaf/ai-commit-cli/commit/47fbe99e90b9ab788b036375d8536ce5e8b5c7fa)) + +### Documentation + +- create LICENSE ([#18](https://github.com/liblaf/ai-commit-cli/issues/18)) ([22f2b23](https://github.com/liblaf/ai-commit-cli/commit/22f2b23ecd4c150391b4d95f12d74617be8f8cf8)) + ## [0.5.0](https://github.com/liblaf/ai-commit-cli/compare/v0.4.0...v0.5.0) (2023-12-07) ### Features diff --git a/pyproject.toml b/pyproject.toml index a0697394..102f7da1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ description = "A CLI that writes your git commit messages for you with AI" include = ["docs/prompt.md"] name = "ai-commit-cli" readme = "README.md" -version = "0.5.0" +version = "0.6.0" [tool.poetry.dependencies] httpx = { extras = ["socks"], version = ">=0.25.2,<0.27.0" }