Skip to content

Commit 68300b2

Browse files
committed
v0.1.2
Signed-off-by: Matteo Collina <hello@matteocollina.com>
1 parent 553f2c5 commit 68300b2

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ jobs:
182182
target: aarch64-apple-darwin
183183
architecture: arm64
184184
node:
185-
- '18'
186185
- '20'
187186
- '22'
188187
- '24'
@@ -253,7 +252,6 @@ jobs:
253252
# - host: ubuntu-22.04-arm
254253
# target: aarch64-unknown-linux-musl
255254
node:
256-
- '18'
257255
- '20'
258256
- '22'
259257
- '24'

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
},
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">= 10"
21+
"node": ">= 20"
2222
}
2323
}

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
},
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">= 10"
21+
"node": ">= 20"
2222
}
2323
}

npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"license": "MIT",
2525
"engines": {
26-
"node": ">= 10"
26+
"node": ">= 20"
2727
},
2828
"libc": [
2929
"glibc"

npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"license": "MIT",
2525
"engines": {
26-
"node": ">= 10"
26+
"node": ">= 20"
2727
},
2828
"libc": [
2929
"glibc"

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@platformatic/python-node",
33
"description": "Run ASGI-compatible Python apps in Node.js",
4-
"private": true,
5-
"version": "0.1.1",
4+
"version": "0.1.2",
65
"main": "index.js",
76
"types": "index.d.ts",
87
"napi": {
@@ -25,7 +24,7 @@
2524
"oxlint": "^0.16.0"
2625
},
2726
"engines": {
28-
"node": ">= 10"
27+
"node": ">= 20"
2928
},
3029
"scripts": {
3130
"artifacts": "napi artifacts",

0 commit comments

Comments
 (0)