diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b295c3f54..6fbbb03de 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.71.0" + ".": "4.71.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bb769c53e..1e74a8ee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.71.1 (2024-11-06) + +Full Changelog: [v4.71.0...v4.71.1](https://github.com/openai/openai-node/compare/v4.71.0...v4.71.1) + +### Bug Fixes + +* change release please configuration for jsr.json ([#1174](https://github.com/openai/openai-node/issues/1174)) ([c39efba](https://github.com/openai/openai-node/commit/c39efba812209c8906315596cc0a56e54ae8590a)) + ## 4.71.0 (2024-11-04) Full Changelog: [v4.70.3...v4.71.0](https://github.com/openai/openai-node/compare/v4.70.3...v4.71.0) diff --git a/jsr.json b/jsr.json index fefb5b291..48a838612 100644 --- a/jsr.json +++ b/jsr.json @@ -1,8 +1,10 @@ { "name": "@openai/openai", - "version": "4.47.1", + "version": "4.71.1", "exports": "./index.ts", "publish": { - "exclude": ["!."] + "exclude": [ + "!." + ] } } diff --git a/package.json b/package.json index 501d4f31e..dd3dfba7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.71.0", + "version": "4.71.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/release-please-config.json b/release-please-config.json index 377a76e99..1aa2fb613 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -63,6 +63,10 @@ "extra-files": [ "src/version.ts", "README.md", - "jsr.json" + { + "type": "json", + "path": "jsr.json", + "jsonpath": "$.version" + } ] } diff --git a/scripts/build-deno b/scripts/build-deno index 7d542cf24..4a2000a66 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -14,6 +14,6 @@ for dir in dist-deno/_shims dist-deno/_shims/auto; do mv -- "$file" "${file%-deno.ts}.ts" done done -for file in LICENSE CHANGELOG.md; do +for file in README.md LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist-deno; fi done diff --git a/src/version.ts b/src/version.ts index 273878132..3474c77c3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.71.0'; // x-release-please-version +export const VERSION = '4.71.1'; // x-release-please-version