diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3fb120d0e..3156504f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.6" + ".": "4.55.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e213c9bca..c9aa0a024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.7 (2024-08-13) + +Full Changelog: [v4.55.6...v4.55.7](https://github.com/openai/openai-node/compare/v4.55.6...v4.55.7) + +### Bug Fixes + +* **json-schema:** correct handling of nested recursive schemas ([#992](https://github.com/openai/openai-node/issues/992)) ([ac309ab](https://github.com/openai/openai-node/commit/ac309abee3419594f45680c7d0ab11e13ce28c5b)) + ## 4.55.6 (2024-08-13) Full Changelog: [v4.55.5...v4.55.6](https://github.com/openai/openai-node/compare/v4.55.5...v4.55.6) diff --git a/README.md b/README.md index 193fc24fc..0d6a9b6ad 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.55.6/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.7/mod.ts'; ``` diff --git a/package.json b/package.json index 683ae9afb..b746ad36c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.6", + "version": "4.55.7", "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 dd1410d53..296fad532 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.55.6/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.7/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 64d6dc952..2e8b039e5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.6'; // x-release-please-version +export const VERSION = '4.55.7'; // x-release-please-version