duckdb 0.10.2-dev7.0 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -48,7 +48,7 @@ jobs:
48
48
  strategy:
49
49
  matrix:
50
50
  # node.js current support policy to be found at https://github.com/duckdb/duckdb-node/tree/main/#Supported-Node-versions
51
- node: [ '12', '14', '16', '17', '18', '19', '20', '21']
51
+ node: [ '12', '14', '16', '17', '18', '19', '20', '21', '22']
52
52
  target_arch: [ x64, arm64 ]
53
53
  isRelease:
54
54
  - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
@@ -124,7 +124,7 @@ jobs:
124
124
  strategy:
125
125
  matrix:
126
126
  target_arch: [ x64, arm64 ]
127
- node: [ '16', '17', '18', '19', '20', '21']
127
+ node: [ '16', '17', '18', '19', '20', '21', '22']
128
128
  isRelease:
129
129
  - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
130
130
  exclude:
package/README.md CHANGED
@@ -101,10 +101,10 @@ var stmt = con.prepare('select ?::INTEGER as fortytwo', function(err, stmt) {
101
101
  ```
102
102
 
103
103
  ## Supported Node versions
104
- We actively support only LTS and In-Support Node versions, as per July 2023, they are: Node 18, Node 20 and Node 21.
104
+ We actively support only LTS and In-Support Node versions, as per July 2023, they are: Node 18, Node 20 and Node 21. For OSX and Linux targets, also Node 22 is available.
105
105
  Release schedule for Node.js can be checked here: https://github.com/nodejs/release#release-schedule.
106
106
 
107
- We currently bundle and test DuckDB also for Node 10, 12, 14, 16, 17 and 19. We plan of going so going forward as long as the tooling supports it.
107
+ We currently bundle and test DuckDB also for Node 12, 14, 16, 17 and 19. We plan of going so going forward as long as the tooling supports it.
108
108
  As per July 2023, Node 15 has been removed from the supported versions.
109
109
 
110
110
  ## Development
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.10.2-dev7.0",
5
+ "version": "0.10.2",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {