Skip to content
Commits on Source (12)
......@@ -9,7 +9,7 @@ workflow:
- if: $CI_COMMIT_BRANCH
build:
image: node:20
image: node:22
stage: build
before_script:
- npm install
......@@ -23,7 +23,7 @@ build:
needs: []
lint:
image: node:20
image: node:22
stage: test
before_script:
- npm install
......@@ -34,7 +34,7 @@ lint:
needs: []
test:
image: node:20
image: node:22
stage: test
before_script:
- npm install
......@@ -45,7 +45,7 @@ test:
needs: []
coverage:
image: node:20
image: node:22
stage: test
before_script:
- npm install
......@@ -58,7 +58,7 @@ coverage:
artifacts: true
publish:
image: node:20
image: node:22
stage: publish
before_script:
- npm config set access public
......
......@@ -9,7 +9,11 @@
[
"@semantic-release/git",
{
"assets": ["package.json", "CHANGELOG.md"],
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
......
## [4.0.16](https://git.zsinfo.nl/Zandor300/node-modbus/compare/v4.0.15...v4.0.16) (2024-12-03)
### Bug Fixes
* **deps:** update dependency debug to v3.2.7 ([d481700](https://git.zsinfo.nl/Zandor300/node-modbus/commit/d481700934c9355f98336aa028972b3e9d19b8ea))
## [4.0.15](https://git.zsinfo.nl/Zandor300/node-modbus/compare/v4.0.14...v4.0.15) (2024-11-19)
......
This diff is collapsed.
{
"name": "@zandor300/jsmodbus",
"version": "4.0.15",
"version": "4.0.16",
"description": "Implementation for the Serial/TCP Modbus protocol.",
"author": "Zandor Smith <info@zsinfo.nl>",
"private": false,
......@@ -23,13 +23,13 @@
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.5",
"@semantic-release/gitlab": "13.1.0",
"@semantic-release/github": "10.3.5",
"@semantic-release/gitlab": "13.2.2",
"@semantic-release/npm": "12.0.1",
"@types/crc": "^3.4.0",
"@types/debug": "^4.1.4",
"@types/mocha": "^5.2.7",
"@types/node": "^20.0.0",
"@types/node": "^22.0.0",
"@types/serialport": "^7.0.4",
"commander": "^3.0.2",
"mocha": "^3.3.0",
......