From f99af74fa788c9657d90decbb86bb6bcef53d093 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:04:00 +0000 Subject: [PATCH] release: 4.61.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8f32b4daf..70d517bf3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.61.1" + ".": "4.61.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fc81d615..c08725116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 4.61.2 (2024-09-17) + +Full Changelog: [v4.61.1...v4.61.2](https://github.com/openai/openai-node/compare/v4.61.1...v4.61.2) + +### Chores + +* **internal:** add query string encoder ([#1079](https://github.com/openai/openai-node/issues/1079)) ([fce31f2](https://github.com/openai/openai-node/commit/fce31f27395861c9f191d1f94bfd807a9acb6244)) +* **internal:** fix some types ([#1082](https://github.com/openai/openai-node/issues/1082)) ([0223582](https://github.com/openai/openai-node/commit/022358271eb681d7f541596efdb6de64bdcc5385)) +* **tests:** add query string tests to ecosystem tests ([64ccd83](https://github.com/openai/openai-node/commit/64ccd83b0fad227b358d81b2807b769132662c0d)) + ## 4.61.1 (2024-09-16) Full Changelog: [v4.61.0...v4.61.1](https://github.com/openai/openai-node/compare/v4.61.0...v4.61.1) diff --git a/README.md b/README.md index 03ee259ee..5bdcce998 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.61.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.61.2/mod.ts'; ``` diff --git a/package.json b/package.json index a65c9d6ba..db0593866 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.61.1", + "version": "4.61.2", "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 641b61c02..2c3d0aa60 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.61.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.61.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 6c1e0cb8e..b5a9d5ffb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.61.1'; // x-release-please-version +export const VERSION = '4.61.2'; // x-release-please-version