node-osc 6.1.12 → 6.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,13 +29,8 @@ jobs:
29
29
  needs: publish
30
30
  steps:
31
31
  - name: Checkout code
32
- uses: actions/checkout@v2
33
- - name: Create Release Notes
34
- uses: actions/github-script@v4.0.2
35
- with:
36
- github-token: ${{secrets.GITHUB_TOKEN}}
37
- script: |
38
- await github.request(`POST /repos/${{ github.repository }}/releases`, {
39
- tag_name: "${{ github.ref }}",
40
- generate_release_notes: true
41
- });
32
+ uses: actions/checkout@v3
33
+ - name: Create Release
34
+ run: gh release create ${{ github.ref }} --generate-notes
35
+ env:
36
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -11,7 +11,7 @@ jobs:
11
11
  run-tests:
12
12
  strategy:
13
13
  matrix:
14
- node-version: ['16', '14', '12']
14
+ node-version: ['17', '16', '14', '12']
15
15
  os: [ubuntu-latest, macos-latest, windows-latest]
16
16
 
17
17
  runs-on: ${{ matrix.os }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "node-osc",
3
3
  "description": "pyOSC inspired library for sending and receiving OSC messages",
4
- "version": "6.1.12",
4
+ "version": "6.1.15",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"
@@ -44,6 +44,6 @@
44
44
  "eslint": "^8.2.0",
45
45
  "get-port": "^6.0.0",
46
46
  "rollup": "^2.23.0",
47
- "tap": "^15.0.4"
47
+ "tap": "^16.0.0"
48
48
  }
49
49
  }