diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ded4849c..fc4efb3a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.29.1" + ".": "4.29.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 741a701b..07a5bc94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.29.2 (2024-03-19) + +Full Changelog: [v4.29.1...v4.29.2](https://github.com/openai/openai-node/compare/v4.29.1...v4.29.2) + +### Chores + +* **internal:** update generated pragma comment ([#724](https://github.com/openai/openai-node/issues/724)) ([139e205](https://github.com/openai/openai-node/commit/139e205ed1ed30cb1df982d852a093dcea945aba)) + + +### Documentation + +* fix typo in CONTRIBUTING.md ([#722](https://github.com/openai/openai-node/issues/722)) ([05ff8f7](https://github.com/openai/openai-node/commit/05ff8f7671fe6ce5d9517034f76a166a0bd27803)) + ## 4.29.1 (2024-03-15) Full Changelog: [v4.29.0...v4.29.1](https://github.com/openai/openai-node/compare/v4.29.0...v4.29.1) diff --git a/README.md b/README.md index 68d337e8..75b26ce9 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.29.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.29.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index c08e26db..25569475 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.29.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.29.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 8a639876..25994c23 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.29.1", + "version": "4.29.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 8acef11c..a9177ff5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.29.1'; // x-release-please-version +export const VERSION = '4.29.2'; // x-release-please-version