Skip to content

Commit 03f85b8

Browse files
release: 1.4.8
1 parent 0cdfbc2 commit 03f85b8

File tree

4 files changed

+39
-10
lines changed

4 files changed

+39
-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-
".": "1.4.7"
2+
".": "1.4.8"
33
}

CHANGELOG.md

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

3+
## 1.4.8 (2025-03-04)
4+
5+
Full Changelog: [v1.4.7...v1.4.8](https://github.com/runwayml/sdk-node/compare/v1.4.7...v1.4.8)
6+
7+
### Chores
8+
9+
* **internal:** codegen related update ([#67](https://github.com/runwayml/sdk-node/issues/67)) ([e247b5b](https://github.com/runwayml/sdk-node/commit/e247b5b4369b051353505d939fd3fccd8b93a98f))
10+
311
## 1.4.7 (2025-01-02)
412

513
Full Changelog: [v1.4.6...v1.4.7](https://github.com/runwayml/sdk-node/compare/v1.4.6...v1.4.7)

package.json

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runwayml/sdk",
3-
"version": "1.4.7",
3+
"version": "1.4.8",
44
"description": "The official TypeScript library for the RunwayML API",
55
"author": "RunwayML <[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 = '1.4.7'; // x-release-please-version
1+
export const VERSION = '1.4.8'; // x-release-please-version

0 commit comments

Comments
 (0)