Skip to content

Commit fd4f984

Browse files
committed
v5.1.4-grist.12
1 parent 520a3db commit fd4f984

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
os:
2424
- macos-latest
25-
- ubuntu-24.04
25+
- ubuntu-22.04
2626
- windows-latest
2727
host:
2828
- x64
@@ -39,7 +39,7 @@ jobs:
3939
node: 22
4040
host: arm64
4141
target: arm64
42-
- os: ubuntu-24.04-arm
42+
- os: ubuntu-22.04-arm
4343
node: 22
4444
host: arm64
4545
target: arm64
@@ -130,8 +130,8 @@ jobs:
130130
node:
131131
- 22
132132
os:
133-
- ubuntu-24.04
134-
- ubuntu-24.04-arm
133+
- ubuntu-22.04
134+
- ubuntu-22.04-arm
135135
variant:
136136
- alpine
137137
name: ${{ matrix.variant }} (node=${{ matrix.node }}, os=${{ matrix.os }})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gristlabs/sqlite3",
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
4-
"version": "5.1.4-grist.11",
4+
"version": "5.1.4-grist.12",
55
"homepage": "https://github.com/gristlabs/node-sqlite3",
66
"author": {
77
"name": "Mapbox",

src/gcc-preinclude.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ __asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
1313
__asm__(".symver exp,exp@GLIBC_2.2.5");
1414
__asm__(".symver log,log@GLIBC_2.2.5");
1515
__asm__(".symver pow,pow@GLIBC_2.2.5");
16+
__asm__(".symver fmod,fmod@GLIBC_2.2.5");
1617
__asm__(".symver fcntl64,fcntl@GLIBC_2.2.5");
1718
#endif
1819

@@ -21,6 +22,7 @@ __asm__(".symver memcpy,memcpy@GLIBC_2.17");
2122
__asm__(".symver exp,exp@GLIBC_2.17");
2223
__asm__(".symver log,log@GLIBC_2.17");
2324
__asm__(".symver pow,pow@GLIBC_2.17");
25+
__asm__(".symver fmod,fmod@GLIBC_2.17");
2426
__asm__(".symver fcntl64,fcntl@GLIBC_2.17");
2527
#endif
2628

0 commit comments

Comments
 (0)