Skip to content

Commit 94bf38e

Browse files
committed
chore(release): publish v7.0.0
1 parent bb94166 commit 94bf38e

15 files changed

+88
-22
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+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))
12+
13+
14+
15+
16+
617
# [7.0.0-0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.2...v7.0.0-0) (2024-08-26)
718

819

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.0.0-0",
2+
"version": "7.0.0",
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+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))
12+
13+
14+
15+
16+
617
# [7.0.0-0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.2...v7.0.0-0) (2024-08-26)
718

819
### Features

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": "7.0.0-0",
3+
"version": "7.0.0",
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-lib/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))

packages/node-lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/node-lib",
3-
"version": "7.0.0-0",
3+
"version": "7.0.0",
44
"description": "Helpers for a npm module for interfacing with the Elgato Stream Deck",
55
"main": "dist/lib.js",
66
"typings": "dist/lib.d.ts",

packages/node/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+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))
12+
13+
14+
15+
16+
617
# [7.0.0-0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.2...v7.0.0-0) (2024-08-26)
718

819

packages/node/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/node",
3-
"version": "7.0.0-0",
3+
"version": "7.0.0",
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,8 +52,8 @@
5252
"node": ">=18.18"
5353
},
5454
"dependencies": {
55-
"@elgato-stream-deck/core": "7.0.0-0",
56-
"@elgato-stream-deck/node-lib": "7.0.0-0",
55+
"@elgato-stream-deck/core": "7.0.0",
56+
"@elgato-stream-deck/node-lib": "7.0.0",
5757
"eventemitter3": "^5.0.1",
5858
"node-hid": "^3.1.0",
5959
"tslib": "^2.7.0"

packages/tcp/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))

packages/tcp/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elgato-stream-deck/tcp",
3-
"version": "7.0.0-0",
3+
"version": "7.0.0",
44
"description": "An npm module for interfacing with select Elgato Stream Deck devices in node over tcp",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -36,8 +36,8 @@
3636
"node": ">=18.18"
3737
},
3838
"dependencies": {
39-
"@elgato-stream-deck/core": "7.0.0-0",
40-
"@elgato-stream-deck/node-lib": "7.0.0-0",
39+
"@elgato-stream-deck/core": "7.0.0",
40+
"@elgato-stream-deck/node-lib": "7.0.0",
4141
"@julusian/bonjour-service": "^1.3.0-2",
4242
"eventemitter3": "^5.0.1",
4343
"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+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
**Note:** Version bump only for package @elgato-stream-deck/webhid-demo
9+
10+
11+
12+
13+
614
# [7.0.0-0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.2...v7.0.0-0) (2024-08-26)
715

816

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": "7.0.0-0",
3+
"version": "7.0.0",
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": "7.0.0-0",
23+
"@elgato-stream-deck/webhid": "7.0.0",
2424
"html-to-image": "^1.11.11"
2525
},
2626
"devDependencies": {

packages/webhid/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+
# [7.0.0](https://github.com/julusian/node-elgato-stream-deck/compare/v7.0.0-0...v7.0.0) (2024-09-08)
7+
8+
9+
### Features
10+
11+
* streamdeck studio support ([#100](https://github.com/julusian/node-elgato-stream-deck/issues/100)) ([baf506d](https://github.com/julusian/node-elgato-stream-deck/commit/baf506da9f4a1e38bc8f7f393743491c21c59835))
12+
13+
14+
15+
16+
617
# [7.0.0-0](https://github.com/julusian/node-elgato-stream-deck/compare/v6.2.2...v7.0.0-0) (2024-08-26)
718

819

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": "7.0.0-0",
3+
"version": "7.0.0",
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": "7.0.0-0",
36+
"@elgato-stream-deck/core": "7.0.0",
3737
"@types/w3c-web-hid": "^1.0.6",
3838
"eventemitter3": "^5.0.1",
3939
"p-queue": "^6.6.2",

yarn.lock

+9-9
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ __metadata:
467467
languageName: node
468468
linkType: hard
469469

470-
"@elgato-stream-deck/core@npm:7.0.0-0, @elgato-stream-deck/core@workspace:packages/core":
470+
"@elgato-stream-deck/core@npm:7.0.0, @elgato-stream-deck/core@workspace:packages/core":
471471
version: 0.0.0-use.local
472472
resolution: "@elgato-stream-deck/core@workspace:packages/core"
473473
dependencies:
@@ -476,7 +476,7 @@ __metadata:
476476
languageName: unknown
477477
linkType: soft
478478

479-
"@elgato-stream-deck/node-lib@npm:7.0.0-0, @elgato-stream-deck/node-lib@workspace:packages/node-lib":
479+
"@elgato-stream-deck/node-lib@npm:7.0.0, @elgato-stream-deck/node-lib@workspace:packages/node-lib":
480480
version: 0.0.0-use.local
481481
resolution: "@elgato-stream-deck/node-lib@workspace:packages/node-lib"
482482
dependencies:
@@ -491,8 +491,8 @@ __metadata:
491491
version: 0.0.0-use.local
492492
resolution: "@elgato-stream-deck/node@workspace:packages/node"
493493
dependencies:
494-
"@elgato-stream-deck/core": "npm:7.0.0-0"
495-
"@elgato-stream-deck/node-lib": "npm:7.0.0-0"
494+
"@elgato-stream-deck/core": "npm:7.0.0"
495+
"@elgato-stream-deck/node-lib": "npm:7.0.0"
496496
eventemitter3: "npm:^5.0.1"
497497
node-hid: "npm:^3.1.0"
498498
tslib: "npm:^2.7.0"
@@ -503,8 +503,8 @@ __metadata:
503503
version: 0.0.0-use.local
504504
resolution: "@elgato-stream-deck/tcp@workspace:packages/tcp"
505505
dependencies:
506-
"@elgato-stream-deck/core": "npm:7.0.0-0"
507-
"@elgato-stream-deck/node-lib": "npm:7.0.0-0"
506+
"@elgato-stream-deck/core": "npm:7.0.0"
507+
"@elgato-stream-deck/node-lib": "npm:7.0.0"
508508
"@julusian/bonjour-service": "npm:^1.3.0-2"
509509
eventemitter3: "npm:^5.0.1"
510510
tslib: "npm:^2.6.3"
@@ -515,7 +515,7 @@ __metadata:
515515
version: 0.0.0-use.local
516516
resolution: "@elgato-stream-deck/webhid-demo@workspace:packages/webhid-demo"
517517
dependencies:
518-
"@elgato-stream-deck/webhid": "npm:7.0.0-0"
518+
"@elgato-stream-deck/webhid": "npm:7.0.0"
519519
copy-webpack-plugin: "npm:^11.0.0"
520520
cross-env: "npm:^7.0.3"
521521
html-to-image: "npm:^1.11.11"
@@ -526,11 +526,11 @@ __metadata:
526526
languageName: unknown
527527
linkType: soft
528528

529-
"@elgato-stream-deck/webhid@npm:7.0.0-0, @elgato-stream-deck/webhid@workspace:packages/webhid":
529+
"@elgato-stream-deck/webhid@npm:7.0.0, @elgato-stream-deck/webhid@workspace:packages/webhid":
530530
version: 0.0.0-use.local
531531
resolution: "@elgato-stream-deck/webhid@workspace:packages/webhid"
532532
dependencies:
533-
"@elgato-stream-deck/core": "npm:7.0.0-0"
533+
"@elgato-stream-deck/core": "npm:7.0.0"
534534
"@types/w3c-web-hid": "npm:^1.0.6"
535535
eventemitter3: "npm:^5.0.1"
536536
p-queue: "npm:^6.6.2"

0 commit comments

Comments
 (0)