Skip to content

Commit 020b350

Browse files
authored
Merge pull request #104 from runwayml/release-please--branches--main--changes--next--components--sdk
release: 2.0.3
2 parents 979e32e + 7997476 commit 020b350

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Set up Node
7373
uses: actions/setup-node@v4
7474
with:
75-
node-version: '18'
75+
node-version: '20'
7676

7777
- name: Bootstrap
7878
run: ./scripts/bootstrap

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Node
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: '18'
22+
node-version: '20'
2323

2424
- name: Install dependencies
2525
run: |

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 2.0.3 (2025-05-07)
4+
5+
Full Changelog: [v2.0.2...v2.0.3](https://github.com/runwayml/sdk-node/compare/v2.0.2...v2.0.3)
6+
7+
### Chores
8+
9+
* **ci:** bump node version for release workflows ([f024169](https://github.com/runwayml/sdk-node/commit/f024169eca8faaddf3d0f39f8a99a6faeff2792f))
10+
11+
12+
### Documentation
13+
14+
* **readme:** fix typo ([84ba1ba](https://github.com/runwayml/sdk-node/commit/84ba1ba3611532d5b9f6a1f40f49855094566745))
15+
316
## 2.0.2 (2025-04-30)
417

518
Full Changelog: [v2.0.1...v2.0.2](https://github.com/runwayml/sdk-node/compare/v2.0.1...v2.0.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async function main() {
9797
main();
9898
```
9999

100-
Error codes are as followed:
100+
Error codes are as follows:
101101

102102
| Status Code | Error Type |
103103
| ----------- | -------------------------- |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runwayml/sdk",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "The official TypeScript library for the RunwayML API",
55
"author": "RunwayML <[email protected]>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '2.0.2'; // x-release-please-version
1+
export const VERSION = '2.0.3'; // x-release-please-version

0 commit comments

Comments
 (0)