node-osc 6.1.14 → 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.
@@ -28,12 +28,9 @@ jobs:
28
28
  runs-on: ubuntu-latest
29
29
  needs: publish
30
30
  steps:
31
- - name: Create Release Notes
32
- uses: actions/github-script@v4.0.2
33
- with:
34
- github-token: ${{secrets.GITHUB_TOKEN}}
35
- script: |
36
- await github.request(`POST /repos/${{ github.repository }}/releases`, {
37
- tag_name: "${{ github.ref }}",
38
- generate_release_notes: true
39
- });
31
+ - name: Checkout code
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 }}
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.14",
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
  }