From 5a632b97d5702c216b275b7c91b98da25bd11c5c Mon Sep 17 00:00:00 2001 From: Ryan Jordan Date: Tue, 15 Aug 2023 11:55:51 -0500 Subject: [PATCH] 0.2.0 --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8881d0e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +### Changelog + +All notable changes to this project will be documented in this file. Dates are displayed in UTC. + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). + +#### [v0.2.0](https://github.com/krjordan/GitLexJS/compare/v0.1.1...v0.2.0) + +- Fix the git changes issue [`#9`](https://github.com/krjordan/GitLexJS/pull/9) +- Fix always returning generic commit message suggestions [`#8`](https://github.com/krjordan/GitLexJS/pull/8) +- Feat add ability to change openai model [`#7`](https://github.com/krjordan/GitLexJS/pull/7) +- Feat: add interactive prompts for better UX [`#6`](https://github.com/krjordan/GitLexJS/pull/6) +- fix: typo in README [`#5`](https://github.com/krjordan/GitLexJS/pull/5) +- Chore add ci cd integration [`#4`](https://github.com/krjordan/GitLexJS/pull/4) +- Merging release/0.1.1 [`#3`](https://github.com/krjordan/GitLexJS/pull/3) +- fix(global): add npm global command & update README [`#1`](https://github.com/krjordan/GitLexJS/pull/1) +- chore: add prettier & eslint to help with code style [`a3e212f`](https://github.com/krjordan/GitLexJS/commit/a3e212f5808e8c40678810e3247da47e8b8f12de) +- Test: add tests to the project [`3b9882e`](https://github.com/krjordan/GitLexJS/commit/3b9882edc144ef3cfe9deabbee4735f68f45adcb) +- Feat: add ability for user to change their model [`8892881`](https://github.com/krjordan/GitLexJS/commit/88928812522722521c48f8287e7ab34d6dfaf095) + +#### [v0.1.1](https://github.com/krjordan/GitLexJS/compare/v0.1.0...v0.1.1) + +> 11 August 2023 + +- Release/0.1.1 [`#2`](https://github.com/krjordan/GitLexJS/pull/2) +- fix(global): add npm global command & update README [`d7c5398`](https://github.com/krjordan/GitLexJS/commit/d7c5398f4226ef6c5b217deb0c88ed339330805a) +- Bump version to 0.1.1 [`f4c5bdf`](https://github.com/krjordan/GitLexJS/commit/f4c5bdf89fb27aeaccddd4f15d888811c874cc28) + +#### v0.1.0 + +> 11 August 2023 + +- first commit [`dc818a5`](https://github.com/krjordan/GitLexJS/commit/dc818a5e54429c08389ee9fd08df83809d72efd8) +- Refactor .editorconfig and .gitignore, update CONTRIBUTING.md [`b9a3eeb`](https://github.com/krjordan/GitLexJS/commit/b9a3eeb27ad5665c0f71c526961b0d5446a2d597) +- Add GitHub Action to build and publish npm package [`ef44f7a`](https://github.com/krjordan/GitLexJS/commit/ef44f7a8f4221210a219ac87007e6297698248d7) diff --git a/package.json b/package.json index 2b9ae59..4adb3c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlexjs", - "version": "0.1.1", + "version": "0.2.0", "bin": { "gitlex": "./dist/index.js" },