diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fb1f343c6..f4b3cc513 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.4.0" + ".": "4.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0c19da3e..ba9fd69d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.4.1 (2023-09-05) + +Full Changelog: [v4.4.0...v4.4.1](https://github.com/openai/openai-node/compare/v4.4.0...v4.4.1) + +### Bug Fixes + +* **client:** fix TS errors that appear when users Go to Source in VSCode ([#281](https://github.com/openai/openai-node/issues/281)) ([e2a2a29](https://github.com/openai/openai-node/commit/e2a2a29d540b13bfbfd2f2797b4a21743feaadea)), closes [#249](https://github.com/openai/openai-node/issues/249) +* **client:** handle case where the client is instantiated with a undefined baseURL ([#285](https://github.com/openai/openai-node/issues/285)) ([6eddafd](https://github.com/openai/openai-node/commit/6eddafd2f946aa8b44b5f5e81e28d532b04e72ec)) +* **client:** use explicit file extensions in _shims imports ([#276](https://github.com/openai/openai-node/issues/276)) ([554fc94](https://github.com/openai/openai-node/commit/554fc9480db1eb8b513285aa53a336abd469bd11)) + + +### Documentation + +* **api:** update docstrings ([#286](https://github.com/openai/openai-node/issues/286)) ([47e8f61](https://github.com/openai/openai-node/commit/47e8f614209cd3ec91b44d7d4e0e1f488c39a345)) + ## 4.4.0 (2023-09-01) Full Changelog: [v4.3.1...v4.4.0](https://github.com/openai/openai-node/compare/v4.3.1...v4.4.0) diff --git a/package.json b/package.json index d493b0550..3a66f4aba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.4.0", + "version": "4.4.1", "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 8ab25148f..5956b8d7d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.4.0'; // x-release-please-version +export const VERSION = '4.4.1'; // x-release-please-version