Skip to content

Commit abf99f9

Browse files
committed
chore(release): publish v6.2.1
1 parent d80b765 commit abf99f9

11 files changed

+59
-13
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.0...v6.2.1) (2024-07-11)
7+
8+
9+
### Bug Fixes
10+
11+
* val.readUint8 is not a function ([#95](https://github.com/julusian/node-elgato-stream-deck/issues/95)) ([d80b765](https://github.com/julusian/node-elgato-stream-deck/commit/d80b76572cb02589549315eaee92de7c08f963eb))
12+
13+
14+
15+
16+
617
# [6.2.0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.0.0...v6.2.0) (2024-04-30)
718

819

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.2.0",
2+
"version": "6.2.1",
33
"npmClient": "yarn",
44
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
55
}

packages/core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.0...v6.2.1) (2024-07-11)
7+
8+
9+
### Bug Fixes
10+
11+
* val.readUint8 is not a function ([#95](https://github.com/julusian/node-elgato-stream-deck/issues/95)) ([d80b765](https://github.com/julusian/node-elgato-stream-deck/commit/d80b76572cb02589549315eaee92de7c08f963eb))
12+
13+
14+
15+
16+
617
# [6.2.0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.0.0...v6.2.0) (2024-04-30)
718

819

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/core",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "An npm module for interfacing with the Elgato Stream Deck",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

packages/node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.0...v6.2.1) (2024-07-11)
7+
8+
**Note:** Version bump only for package @elgato-stream-deck/node
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.0.0...v6.2.0) (2024-04-30)
715

816

packages/node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/node",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "An npm module for interfacing with the Elgato Stream Deck in node",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -52,7 +52,7 @@
5252
"node": ">=18.18"
5353
},
5454
"dependencies": {
55-
"@elgato-stream-deck/core": "6.2.0",
55+
"@elgato-stream-deck/core": "6.2.1",
5656
"jpeg-js": "^0.4.4",
5757
"node-hid": "^3.1.0",
5858
"tslib": "^2.6.3"

packages/webhid-demo/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.0...v6.2.1) (2024-07-11)
7+
8+
**Note:** Version bump only for package @elgato-stream-deck/webhid-demo
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.0.0...v6.2.0) (2024-04-30)
715

816
**Note:** Version bump only for package @elgato-stream-deck/webhid-demo

packages/webhid-demo/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/webhid-demo",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"private": true,
55
"license": "MIT",
66
"homepage": "https://github.com/julusian/node-elgato-stream-deck#readme",
@@ -20,7 +20,7 @@
2020
"build": "run g:rimraf dist && cross-env NODE_ENV=production webpack --progress"
2121
},
2222
"dependencies": {
23-
"@elgato-stream-deck/webhid": "6.2.0",
23+
"@elgato-stream-deck/webhid": "6.2.1",
2424
"buffer": "^6.0.3",
2525
"html-to-image": "^1.11.11"
2626
},

packages/webhid/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.0...v6.2.1) (2024-07-11)
7+
8+
**Note:** Version bump only for package @elgato-stream-deck/webhid
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.0.0...v6.2.0) (2024-04-30)
715

816

packages/webhid/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/webhid",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "An npm module for interfacing with the Elgato Stream Deck in the browser",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"udev"
3434
],
3535
"dependencies": {
36-
"@elgato-stream-deck/core": "6.2.0",
36+
"@elgato-stream-deck/core": "6.2.1",
3737
"@types/w3c-web-hid": "^1.0.6",
3838
"p-queue": "^6.6.2",
3939
"tslib": "^2.6.3"

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ __metadata:
449449
languageName: node
450450
linkType: hard
451451

452-
"@elgato-stream-deck/core@npm:6.2.0, @elgato-stream-deck/core@workspace:packages/core":
452+
"@elgato-stream-deck/core@npm:6.2.1, @elgato-stream-deck/core@workspace:packages/core":
453453
version: 0.0.0-use.local
454454
resolution: "@elgato-stream-deck/core@workspace:packages/core"
455455
dependencies:
@@ -462,7 +462,7 @@ __metadata:
462462
version: 0.0.0-use.local
463463
resolution: "@elgato-stream-deck/node@workspace:packages/node"
464464
dependencies:
465-
"@elgato-stream-deck/core": "npm:6.2.0"
465+
"@elgato-stream-deck/core": "npm:6.2.1"
466466
jpeg-js: "npm:^0.4.4"
467467
node-hid: "npm:^3.1.0"
468468
tslib: "npm:^2.6.3"
@@ -475,7 +475,7 @@ __metadata:
475475
version: 0.0.0-use.local
476476
resolution: "@elgato-stream-deck/webhid-demo@workspace:packages/webhid-demo"
477477
dependencies:
478-
"@elgato-stream-deck/webhid": "npm:6.2.0"
478+
"@elgato-stream-deck/webhid": "npm:6.2.1"
479479
buffer: "npm:^6.0.3"
480480
copy-webpack-plugin: "npm:^11.0.0"
481481
cross-env: "npm:^7.0.3"
@@ -487,11 +487,11 @@ __metadata:
487487
languageName: unknown
488488
linkType: soft
489489

490-
"@elgato-stream-deck/webhid@npm:6.2.0, @elgato-stream-deck/webhid@workspace:packages/webhid":
490+
"@elgato-stream-deck/webhid@npm:6.2.1, @elgato-stream-deck/webhid@workspace:packages/webhid":
491491
version: 0.0.0-use.local
492492
resolution: "@elgato-stream-deck/webhid@workspace:packages/webhid"
493493
dependencies:
494-
"@elgato-stream-deck/core": "npm:6.2.0"
494+
"@elgato-stream-deck/core": "npm:6.2.1"
495495
"@types/w3c-web-hid": "npm:^1.0.6"
496496
p-queue: "npm:^6.6.2"
497497
tslib: "npm:^2.6.3"

0 commit comments

Comments
 (0)