diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27353849a..898054ccf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.1" + ".": "4.38.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e0f99a06..e43fa8c67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.2 (2024-04-19) + +Full Changelog: [v4.38.1...v4.38.2](https://github.com/openai/openai-node/compare/v4.38.1...v4.38.2) + +### Bug Fixes + +* **api:** correct types for message attachment tools ([#787](https://github.com/openai/openai-node/issues/787)) ([8626884](https://github.com/openai/openai-node/commit/8626884abd2494aa081db9e50a2f268b6cebc5df)) + ## 4.38.1 (2024-04-18) Full Changelog: [v4.38.0...v4.38.1](https://github.com/openai/openai-node/compare/v4.38.0...v4.38.1) diff --git a/README.md b/README.md index cbc719a7c..2637372d7 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.38.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index 0c7e2f7c1..8dfcec58d 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.38.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index a1ef89c27..74ced775c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.1", + "version": "4.38.2", "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 dac71224d..cd209780f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.1'; // x-release-please-version +export const VERSION = '4.38.2'; // x-release-please-version