Skip to content

Commit 584c303

Browse files
committed
fix(workflow): update node to 24 LTS
1 parent 56af58c commit 584c303

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,9 @@ jobs:
289289
- uses: actions/setup-node@v4
290290
if: steps.tag.outputs.version != ''
291291
with:
292-
node-version: '20'
292+
node-version: '24'
293293
registry-url: 'https://registry.npmjs.org'
294294

295-
- name: update npm
296-
if: steps.tag.outputs.version != ''
297-
run: sudo npm install -g npm@11.9.0
298-
299295
- name: build and publish npm packages
300296
if: steps.tag.outputs.version != ''
301297
run: |

packages/flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.1.17
3+
## 1.1.18
44

55
- Initial Flutter package release
66
- Added support for Android 16kb page size devices

packages/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sqlite_js
2-
version: 1.1.17
2+
version: 1.1.18
33
description: >
44
SQLite JS is a powerful extension that brings JavaScript capabilities to SQLite.
55
With this extension, you can create custom SQLite functions, aggregates,

src/sqlitejs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "sqlite3.h"
1717
#endif
1818

19-
#define SQLITE_JS_VERSION "1.1.17"
19+
#define SQLITE_JS_VERSION "1.1.18"
2020

2121
int sqlite3_js_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2222
const char *sqlitejs_version (void);

0 commit comments

Comments
 (0)