Skip to content

Commit d7d5610

Browse files
authored
Merge pull request openai#849 from openai/release-please--branches--master--changes--next--components--openai
release: 4.47.1
2 parents 2b1bc88 + 7376041 commit d7d5610

File tree

10 files changed

+24
-10
lines changed

10 files changed

+24
-10
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ jobs:
2222
node-version: '18'
2323

2424
- name: Install dependencies
25-
run: |
26-
yarn install
25+
run: yarn install
2726

2827
- name: Check types
29-
run: |
30-
yarn build
28+
run: ./scripts/lint
3129
test:
3230
name: test
3331
runs-on: ubuntu-latest

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 4.47.1 (2024-05-14)
4+
5+
Full Changelog: [v4.47.0...v4.47.1](https://github.com/openai/openai-node/compare/v4.47.0...v4.47.1)
6+
7+
### Chores
8+
9+
* **internal:** add slightly better logging to scripts ([#848](https://github.com/openai/openai-node/issues/848)) ([139e690](https://github.com/openai/openai-node/commit/139e690546775b3568934dd990dd329fce2fbc2f))
10+
311
## 4.47.0 (2024-05-14)
412

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

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].0/mod.ts';
22+
import OpenAI from 'https://deno.land/x/[email protected].1/mod.ts';
2323
```
2424

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

package.json

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

scripts/build-deno

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

scripts/format

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
cd "$(dirname "$0")/.."
6+
7+
echo "==> Running eslint --fix"
8+
./node_modules/.bin/eslint --fix --ext ts,js .

scripts/lint

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7+
echo "==> Running eslint"
78
./node_modules/.bin/eslint --ext ts,js .

scripts/test

-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,5 @@ else
5252
echo
5353
fi
5454

55-
# Run tests
5655
echo "==> Running tests"
5756
./node_modules/.bin/jest "$@"

src/version.ts

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

0 commit comments

Comments
 (0)