Skip to content

Commit 5067aa4

Browse files
release: 0.1.0-alpha.4
1 parent 0de15d2 commit 5067aa4

File tree

4 files changed

+49
-10
lines changed

4 files changed

+49
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.3"
2+
".": "0.1.0-alpha.4"
33
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 0.1.0-alpha.4 (2025-02-22)
4+
5+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/zeroentropy-ai/zeroentropy-node/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6+
7+
### Features
8+
9+
* **client:** send `X-Stainless-Timeout` header ([#28](https://github.com/zeroentropy-ai/zeroentropy-node/issues/28)) ([ecd0912](https://github.com/zeroentropy-ai/zeroentropy-node/commit/ecd0912273945a262c29c7520410d6ae927ff177))
10+
11+
12+
### Bug Fixes
13+
14+
* **client:** fix export map for index exports ([#30](https://github.com/zeroentropy-ai/zeroentropy-node/issues/30)) ([1518181](https://github.com/zeroentropy-ai/zeroentropy-node/commit/1518181a12687feeb94e7634194f73f7c6d2a92b))
15+
16+
17+
### Chores
18+
19+
* **internal:** fix devcontainers setup ([#31](https://github.com/zeroentropy-ai/zeroentropy-node/issues/31)) ([0de15d2](https://github.com/zeroentropy-ai/zeroentropy-node/commit/0de15d2ba4cfc81f769646ade15a88c3f30fcaa9))
20+
321
## 0.1.0-alpha.3 (2025-01-28)
422

523
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/zeroentropy-ai/zeroentropy-node/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)

package.json

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zeroentropy",
3-
"version": "0.1.0-alpha.3",
3+
"version": "0.1.0-alpha.4",
44
"description": "The official TypeScript library for the ZeroEntropy API",
55
"author": "ZeroEntropy <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -107,17 +107,38 @@
107107
"default": "./dist/index.mjs"
108108
},
109109
"./*.mjs": {
110-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
111-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
110+
"types": [
111+
"./dist/*.d.ts",
112+
"./dist/*/index.d.ts"
113+
],
114+
"default": [
115+
"./dist/*.mjs",
116+
"./dist/*/index.mjs"
117+
]
112118
},
113119
"./*.js": {
114-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
115-
"default": ["./dist/*.js", "./dist/*/index.js"]
120+
"types": [
121+
"./dist/*.d.ts",
122+
"./dist/*/index.d.ts"
123+
],
124+
"default": [
125+
"./dist/*.js",
126+
"./dist/*/index.js"
127+
]
116128
},
117129
"./*": {
118-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
119-
"require": ["./dist/*.js", "./dist/*/index.js"],
120-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
130+
"types": [
131+
"./dist/*.d.ts",
132+
"./dist/*/index.d.ts"
133+
],
134+
"require": [
135+
"./dist/*.js",
136+
"./dist/*/index.js"
137+
],
138+
"default": [
139+
"./dist/*.mjs",
140+
"./dist/*/index.mjs"
141+
]
121142
}
122143
}
123144
}

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.3'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.4'; // x-release-please-version

0 commit comments

Comments
 (0)