diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f533aa156..7f5d28dff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.43.0" + ".": "4.44.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e728d02..ecdbfdb14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.44.0 (2024-05-09) + +Full Changelog: [v4.43.0...v4.44.0](https://github.com/openai/openai-node/compare/v4.43.0...v4.44.0) + +### Features + +* **api:** add message image content ([#834](https://github.com/openai/openai-node/issues/834)) ([7757b3e](https://github.com/openai/openai-node/commit/7757b3ea54a2c5cc251f55af0b676952ba12e8a6)) + ## 4.43.0 (2024-05-08) Full Changelog: [v4.42.0...v4.43.0](https://github.com/openai/openai-node/compare/v4.42.0...v4.43.0) diff --git a/README.md b/README.md index 621b53a84..397bb2185 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.43.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.44.0/mod.ts'; ``` diff --git a/package.json b/package.json index 434e0686b..e70c0fd09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.43.0", + "version": "4.44.0", "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 7badf1191..015d307ea 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.43.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.44.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 8be389808..4ebba76ed 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.43.0'; // x-release-please-version +export const VERSION = '4.44.0'; // x-release-please-version