diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 907c917d6..6d801fc26 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.22.1" + ".": "4.23.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cf7376a89..55b732140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.23.0 (2023-12-17) + +Full Changelog: [v4.22.1...v4.23.0](https://github.com/openai/openai-node/compare/v4.22.1...v4.23.0) + +### Features + +* **api:** add token logprobs to chat completions ([#576](https://github.com/openai/openai-node/issues/576)) ([8d4292e](https://github.com/openai/openai-node/commit/8d4292e6358920b2c9d8df49c6a154231c468512)) + + +### Chores + +* **ci:** run release workflow once per day ([#574](https://github.com/openai/openai-node/issues/574)) ([529f09f](https://github.com/openai/openai-node/commit/529f09f827a675d6e851590acff4e6f4f2af2d26)) + ## 4.22.1 (2023-12-15) Full Changelog: [v4.22.0...v4.22.1](https://github.com/openai/openai-node/compare/v4.22.0...v4.22.1) diff --git a/README.md b/README.md index 3ca8c9be2..ad15ca661 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.22.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.23.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 83408c99a..a0c261716 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.22.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.23.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 3b43de465..8400df396 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.22.1", + "version": "4.23.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f1bd8fe60..a7fe7a1ba 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.22.1'; // x-release-please-version +export const VERSION = '4.23.0'; // x-release-please-version