diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cc6e3d11b..b271b7c1e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.48.2" + ".": "4.48.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b754e9bef..1e8d4c8d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.48.3 (2024-06-06) + +Full Changelog: [v4.48.2...v4.48.3](https://github.com/openai/openai-node/compare/v4.48.2...v4.48.3) + +### Chores + +* **internal:** minor refactor of tests ([#884](https://github.com/openai/openai-node/issues/884)) ([0b71f2b](https://github.com/openai/openai-node/commit/0b71f2b2cb67e5714476b6f63b4ef93a0140bff2)) + ## 4.48.2 (2024-06-05) Full Changelog: [v4.48.1...v4.48.2](https://github.com/openai/openai-node/compare/v4.48.1...v4.48.2) diff --git a/README.md b/README.md index cb28494a4..0169a18dc 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.48.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.48.3/mod.ts'; ``` diff --git a/package.json b/package.json index 364044dcf..14f7c3d5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.48.2", + "version": "4.48.3", "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 8c484ef76..fd2612a13 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.48.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.48.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index c96a440fa..0a2f1d907 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.48.2'; // x-release-please-version +export const VERSION = '4.48.3'; // x-release-please-version