Skip to content

Commit 9ed8975

Browse files
authored
Merge pull request #762 from openai/release-please--branches--master--changes--next--components--openai
release: 4.33.1
2 parents 018ac71 + a22c6f3 commit 9ed8975

14 files changed

+245
-56
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ jobs:
2828
- name: Check types
2929
run: |
3030
yarn build
31+
32+

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ dist
55
/deno
66
/*.tgz
77
.idea/
8+
tmp
9+
.pack
10+
ecosystem-tests/deno/package.json
11+
ecosystem-tests/*/openai.tgz
12+

.prettierignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CHANGELOG.md
2-
/ecosystem-tests
2+
/ecosystem-tests/*/**
33
/node_modules
44
/deno
55

.release-please-manifest.json

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

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 4.33.1 (2024-04-12)
4+
5+
Full Changelog: [v4.33.0...v4.33.1](https://github.com/openai/openai-node/compare/v4.33.0...v4.33.1)
6+
7+
### Chores
8+
9+
* **internal:** formatting ([#763](https://github.com/openai/openai-node/issues/763)) ([b6acf54](https://github.com/openai/openai-node/commit/b6acf54baab7e6cbf6ce3ad1d6c70197cc0181d0))
10+
* **internal:** improve ecosystem tests ([#761](https://github.com/openai/openai-node/issues/761)) ([fcf748d](https://github.com/openai/openai-node/commit/fcf748dbbd23f972ff9fd81a8b2a35232a2d6e5c))
11+
312
## 4.33.0 (2024-04-05)
413

514
Full Changelog: [v4.32.2...v4.33.0](https://github.com/openai/openai-node/compare/v4.32.2...v4.33.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 -->

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].0/mod.ts";
17+
import OpenAI from "https://deno.land/x/[email protected].1/mod.ts";
1818
1919
const client = new OpenAI();
2020
\`\`\`

0 commit comments

Comments
 (0)