Skip to content

Commit c6629c3

Browse files
authored
Merge pull request openai#800 from openai/release-please--branches--master--changes--next--components--openai
release: 4.38.5
2 parents adf0524 + 125a7a4 commit c6629c3

10 files changed

+17
-9
lines changed

.github/workflows/create-releases.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
environment: publish
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- uses: stainless-api/trigger-release-please@v1
2020
id: release

.github/workflows/publish-deno.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment: publish
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Generate a token
1717
id: generate_token

.github/workflows/publish-npm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment: publish
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Node
1717
uses: actions/setup-node@v3

.github/workflows/release-doctor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'openai/openai-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Check release environment
1919
run: |

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.38.4"
2+
".": "4.38.5"
33
}

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 4.38.5 (2024-04-24)
4+
5+
Full Changelog: [v4.38.4...v4.38.5](https://github.com/openai/openai-node/compare/v4.38.4...v4.38.5)
6+
7+
### Chores
8+
9+
* **internal:** use actions/checkout@v4 for codeflow ([#799](https://github.com/openai/openai-node/issues/799)) ([5ab7780](https://github.com/openai/openai-node/commit/5ab7780ea8889818f403a9a89ab19585a7e8972e))
10+
311
## 4.38.4 (2024-04-24)
412

513
Full Changelog: [v4.38.3...v4.38.4](https://github.com/openai/openai-node/compare/v4.38.3...v4.38.4)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can import in Deno via:
1919
<!-- x-release-please-start-version -->
2020

2121
```ts
22-
import OpenAI from 'https://deno.land/x/[email protected].4/mod.ts';
22+
import OpenAI from 'https://deno.land/x/[email protected].5/mod.ts';
2323
```
2424

2525
<!-- x-release-please-end -->

build-deno

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g
1414
Usage:
1515
1616
\`\`\`ts
17-
import OpenAI from "https://deno.land/x/[email protected].4/mod.ts";
17+
import OpenAI from "https://deno.land/x/[email protected].5/mod.ts";
1818
1919
const client = new OpenAI();
2020
\`\`\`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openai",
3-
"version": "4.38.4",
3+
"version": "4.38.5",
44
"description": "The official TypeScript library for the OpenAI API",
55
"author": "OpenAI <[email protected]>",
66
"types": "dist/index.d.ts",

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '4.38.4'; // x-release-please-version
1+
export const VERSION = '4.38.5'; // x-release-please-version

0 commit comments

Comments
 (0)