Skip to content

Commit d788ac9

Browse files
authored
Merge pull request #1605 from informalsystems/gabriela/node-version-requirement
Relax node version requirement
2 parents 2c378f7 + 621dd63 commit d788ac9

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Deprecated
1313
### Removed
1414
### Fixed
15+
16+
- Fixed a requirement from the package configuration that would lead to always installing v0.18.3 on node versions > 20 (#1602)
17+
1518
### Security
1619

1720
## v0.23.0 -- 2025-01-24

quint/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quint/package.json

+3-13
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22
"name": "@informalsystems/quint",
33
"version": "0.23.0",
44
"description": "Core tool for the Quint specification language",
5-
"keywords": [
6-
"temporal",
7-
"logic",
8-
"formal",
9-
"specification",
10-
"verification"
11-
],
5+
"keywords": ["temporal", "logic", "formal", "specification", "verification"],
126
"homepage": "https://github.com/informalsystems/quint",
137
"bugs": "https://github.com/informalsystems/quint/issues",
148
"license": "Apache 2.0",
@@ -35,13 +29,9 @@
3529
"bin": {
3630
"quint": "dist/src/cli.js"
3731
},
38-
"files": [
39-
"README.md",
40-
"dist/**/*",
41-
"test/**/*.ts"
42-
],
32+
"files": ["README.md", "dist/**/*", "test/**/*.ts"],
4333
"engines": {
44-
"node": "18 - 20"
34+
"node": ">=18"
4535
},
4636
"repository": {
4737
"type": "git",

0 commit comments

Comments
 (0)