Skip to content

Commit

Permalink
Release 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hyj1991 committed Jan 1, 2024
1 parent fdedcba commit ba0b6b9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
matrix:
node-version: [ 12, 14, 16, 18, 20 ]
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Checkout Git Source
uses: actions/checkout@master

Expand All @@ -32,8 +37,13 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [ 8, 10, 12, 14, 16, 18, 20 ]
node-version: [ 12, 14, 16, 18, 20 ]
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Checkout Git Source
uses: actions/checkout@master

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ v8-profiler-next provides [node](http://github.com/nodejs/node) bindings for the
## I. Quick Start

* **Compatibility**
* **node version:** v4.x ~ v20.x
* **node version:** v4.x ~ v21.x
* **platform:** mac, linux, windows

This module can also be used in `worker_threads`.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v8-profiler-next",
"version": "1.9.0",
"version": "1.10.0",
"description": "node bindings for the v8 profiler",
"main": "dispatch.js",
"binary": {
Expand Down Expand Up @@ -55,7 +55,7 @@
],
"dependencies": {
"@xprofiler/node-pre-gyp": "^1.0.9",
"nan": "^2.17.0"
"nan": "^2.18.0"
},
"devDependencies": {
"chai": "^4.3.6",
Expand Down
15 changes: 12 additions & 3 deletions scripts/versions.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
'use strict';

const os = require('os');

exports.os7u = [
'node-v12.22.12',
'node-v13.14.0',
'node-v14.19.3',
'node-v14.21.3',
'node-v15.14.0',
'node-v16.15.1',
'node-v16.20.2',
'node-v17.9.1',
];

if (os.platform() === 'darwin' && os.arch() === 'arm64') {
exports.os7u = exports.os7u.slice(4);
}

exports.os8u = [
'node-v18.4.0',
'node-v18.19.0',
'node-v19.9.0',
'node-v20.10.0',
'node-v21.5.0',
];

0 comments on commit ba0b6b9

Please sign in to comment.