From 08ef992cd018ca1b8e2534997310a6a0df606c19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Jan 2025 16:03:19 +0000 Subject: [PATCH] chore(main): release 0.2.0 --- CHANGELOG.md | 14 ++++++++++++++ package.json | 6 ++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64978b6e..b7663499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.2.0](https://github.com/mattzcarey/code-review-gpt/compare/v0.1.10...v0.2.0) (2025-01-12) + + +### Features + +* Add support for o1-preview model ([#353](https://github.com/mattzcarey/code-review-gpt/issues/353)) ([d0d8f7d](https://github.com/mattzcarey/code-review-gpt/commit/d0d8f7db0d3e6208ca2f001ca3e8f221d7274e6b)) +* move to bun and structure output ([#364](https://github.com/mattzcarey/code-review-gpt/issues/364)) ([c042495](https://github.com/mattzcarey/code-review-gpt/commit/c0424952574493f2b35dc386e4d70f6425355407)) + + +### Bug Fixes + +* action.yml ([#365](https://github.com/mattzcarey/code-review-gpt/issues/365)) ([286aa0d](https://github.com/mattzcarey/code-review-gpt/commit/286aa0d7fe9fb0f7c91b34cde29500ccf29be2c8)) +* change gpt model naming ([#362](https://github.com/mattzcarey/code-review-gpt/issues/362)) ([263dc3d](https://github.com/mattzcarey/code-review-gpt/commit/263dc3df92c692d3edc059713cd4654002d2fd08)) + ## [0.1.0](https://github.com/mattzcarey/code-review-gpt/compare/v0.0.34...v0.1.0) (2023-08-16) ### Features diff --git a/package.json b/package.json index b16185da..22a7c5d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-review-gpt", - "version": "0.1.11", + "version": "0.2.0", "description": "Your AI code reviewer. Improve code quality and catch bugs before you break production", "bin": { "code-review-gpt": "./dist/index.js" @@ -68,5 +68,7 @@ "npm-dts": "^1.3.12", "typescript": "^5.1.6" }, - "files": ["dist/*"] + "files": [ + "dist/*" + ] }