Skip to content

Commit

Permalink
update package information
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-fantin committed Jul 11, 2024
1 parent 83017aa commit c233592
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name: Node.js Package
on:
push:
branches: master
workflow_dispatch:

jobs:
build:
Expand All @@ -23,11 +24,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- uses: JS-DevTools/npm-publish@v3.1.1
with:
token: ${{secrets.NPM_TOKEN}}
token: ${{secrets.NPM_TOKEN}}
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,25 @@
## What is
A package that handles OPC UA Client request like read, browse, write, ...

## Versioning
The following package use the semantic versioning template

`X.Y.Z`

- X is the `Major` version, when the following number change, the package can be not compatible with the previous versions
- Y is the `Minor` version, when the following number change, the package is compatible with the previous version with the same Major version
- Z is the `Patch` version, when the following number change, has the same purpose of Minor but is used for no codes change (update pipeline, wiki, references, ...)

By now the package is only use the `Minor` because is in prerelease state.
The first stable version will start from `1.0.0`

## Features

- [x] Read
- [ ] Write
- [x] Browse
- [x] Check connection status
- [ ] Subscription
- [x] Subscription
- [ ] Events
- [ ] Methods
- [x] Connection security access
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"name": "node-red-opcua-x",
"version": "0.5.0",
"version": "0.5.1",
"license": "MIT",
"author": {
"name": "Teo230",
"email": "teeassassin230@gmail.com"
},
"homepage": "https://github.com/Teo230/node-red-opcua-x",
"repository": {
"type": "git",
"url": "https://github.com/Teo230/node-red-opcua-x.git"
},
"engines": {
"node": ">=20.14.0"
},
Expand Down Expand Up @@ -37,4 +42,4 @@
"events": "^3.3.0",
"node-opcua": "^2.127.1"
}
}
}

0 comments on commit c233592

Please sign in to comment.