diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 75bc0882e..ac650bfe5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.16.2" + ".": "4.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48849f082..b30c625c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.17.0 (2023-11-08) + +Full Changelog: [v4.16.2...v4.17.0](https://github.com/openai/openai-node/compare/v4.16.2...v4.17.0) + +### Features + +* **api:** unify function types ([#467](https://github.com/openai/openai-node/issues/467)) ([d51cd94](https://github.com/openai/openai-node/commit/d51cd94b3103219789447e2e9afc4762ae672e5a)) + ## 4.16.2 (2023-11-08) Full Changelog: [v4.16.1...v4.16.2](https://github.com/openai/openai-node/compare/v4.16.1...v4.16.2) diff --git a/README.md b/README.md index 0c5e67295..f174ec4ff 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.16.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.0/mod.ts'; ``` diff --git a/package.json b/package.json index 23a2f4ae3..0ddfa10f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.16.2", + "version": "4.17.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d45bb2fdf..c75285419 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.16.2'; // x-release-please-version +export const VERSION = '4.17.0'; // x-release-please-version