Skip to content

Commit

Permalink
src: NODE_RELEASE should be node
Browse files Browse the repository at this point in the history
So we remain compatible with Node.js.
  • Loading branch information
santigimeno committed Nov 28, 2023
1 parent f16e228 commit 3946ab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#endif

#ifndef NODE_RELEASE
#define NODE_RELEASE "nsolid"
#define NODE_RELEASE "node"
#endif

#ifndef NODE_TAG
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-process-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require('../common');
const assert = require('assert');
const versionParts = process.versions.node.split('.');

assert.strictEqual(process.release.name, 'nsolid');
assert.strictEqual(process.release.name, 'node');

// It's expected that future LTS release lines will have additional
// branches in here
Expand Down

0 comments on commit 3946ab3

Please sign in to comment.