Skip to content

Commit

Permalink
Release 2.5.2
Browse files Browse the repository at this point in the history
Commits:

  - [47d814f] feat: support node-v20.x

PR-URL: #226
  • Loading branch information
hyj1991 authored May 6, 2023
1 parent 47d814f commit f2cd2c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xprofiler",
"version": "2.5.1",
"version": "2.5.2",
"description": "node.js addon to output runtime logs",
"bin": {
"xprofctl": "bin/xprofctl"
Expand Down
16 changes: 11 additions & 5 deletions scripts/versions.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
'use strict';

const os = require('os');

exports.os7u = [
'node-v12.22.12',
'node-v13.14.0',
'node-v14.21.2',
'node-v14.21.3',
'node-v15.14.0',
'node-v16.19.0',
'node-v16.20.0',
'node-v17.9.1',
];

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

exports.os8u = [
'node-v18.13.0',
'node-v19.4.0',
'node-v20.0.0',
'node-v18.16.0',
'node-v19.9.0',
'node-v20.1.0',
];

0 comments on commit f2cd2c3

Please sign in to comment.