diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b32797c27..c6db122fd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.4" + ".": "4.68.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 130b287c2..e89d322ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.5 (2024-10-28) + +Full Changelog: [v4.68.4...v4.68.5](https://github.com/openai/openai-node/compare/v4.68.4...v4.68.5) + +### Documentation + +* **readme:** minor typo fixes ([#1154](https://github.com/openai/openai-node/issues/1154)) ([c6c9f9a](https://github.com/openai/openai-node/commit/c6c9f9aaf75f643016ad73574a7e24a228b5c60f)) + ## 4.68.4 (2024-10-23) Full Changelog: [v4.68.3...v4.68.4](https://github.com/openai/openai-node/compare/v4.68.3...v4.68.4) diff --git a/README.md b/README.md index 9aabd058e..11a38e83f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.5/mod.ts'; ``` diff --git a/package.json b/package.json index ce87796d1..8c837d9d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.4", + "version": "4.68.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 6a67bcdde..197a527d9 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,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.68.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 5c2c17eaf..5c1e0c372 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.4'; // x-release-please-version +export const VERSION = '4.68.5'; // x-release-please-version