diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c63d8fd43..c1ce2c41b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.35.0" + ".": "4.36.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a52d258..79ad5fcc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.36.0 (2024-04-16) + +Full Changelog: [v4.35.0...v4.36.0](https://github.com/openai/openai-node/compare/v4.35.0...v4.36.0) + +### Features + +* **client:** add header OpenAI-Project ([#772](https://github.com/openai/openai-node/issues/772)) ([bb4df37](https://github.com/openai/openai-node/commit/bb4df3722082fb44b7d4feb7a47df796149150a2)) + + +### Build System + +* configure UTF-8 locale in devcontainer ([#774](https://github.com/openai/openai-node/issues/774)) ([bebf4f0](https://github.com/openai/openai-node/commit/bebf4f0ca1f884f8747caff0f0e065aafffde096)) + ## 4.35.0 (2024-04-15) Full Changelog: [v4.34.0...v4.35.0](https://github.com/openai/openai-node/compare/v4.34.0...v4.35.0) diff --git a/README.md b/README.md index c32fcfcd9..406434e6d 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.35.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.36.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index ffdb2cb9d..6389062ec 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.35.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.36.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index d57fe15cd..e848ce857 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.35.0", + "version": "4.36.0", "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 7ca672a0d..460925cae 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.35.0'; // x-release-please-version +export const VERSION = '4.36.0'; // x-release-please-version