diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a55376f66..3be379044 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ on: pull_request: branches: - master + - next jobs: lint: diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8fe5ee19c..4e9f7a5f0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.5" + ".": "4.52.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cf1796bd6..387555c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.6 (2024-07-11) + +Full Changelog: [v4.52.5...v4.52.6](https://github.com/openai/openai-node/compare/v4.52.5...v4.52.6) + +### Chores + +* **ci:** also run workflows for PRs targeting `next` ([#931](https://github.com/openai/openai-node/issues/931)) ([e3f979a](https://github.com/openai/openai-node/commit/e3f979ae94b2252b9552d1e03de5b92d398a3e28)) + ## 4.52.5 (2024-07-10) Full Changelog: [v4.52.4...v4.52.5](https://github.com/openai/openai-node/compare/v4.52.4...v4.52.5) diff --git a/README.md b/README.md index 1e8a544ee..db66d4303 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.52.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.6/mod.ts'; ``` diff --git a/package.json b/package.json index d8c6dc739..abbaaaf7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.5", + "version": "4.52.6", "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 bd1e495d3..7e8dbdc6e 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.52.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.6/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b1bb67f20..8a81ba44e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.5'; // x-release-please-version +export const VERSION = '4.52.6'; // x-release-please-version