Skip to content

Commit 013f5c8

Browse files
chore: version packages (#611)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 819c0ba commit 013f5c8

File tree

10 files changed

+4670
-5804
lines changed

10 files changed

+4670
-5804
lines changed

.changeset/smart-ghosts-hang.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/core-react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @livepeer/core-react
22

3+
## 3.2.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`819c0ba`](https://github.com/livepeer/ui-kit/commit/819c0ba671c4c97e2982bfaaeb7b21f32f18f64b)]:
8+
- @livepeer/core@3.3.1
9+
310
## 3.2.9
411

512
### Patch Changes

packages/core-react/package.json

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@livepeer/core-react",
33
"description": "Internal library used for livepeer react primitives.",
44
"license": "MIT",
5-
"version": "3.2.9",
5+
"version": "3.2.10",
66
"type": "module",
77
"repository": {
88
"type": "git",
@@ -13,7 +13,9 @@
1313
"main": "./dist/index.cjs",
1414
"module": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
16-
"files": ["dist"],
16+
"files": [
17+
"dist"
18+
],
1719
"exports": {
1820
"./package.json": "./package.json",
1921
".": {
@@ -29,8 +31,12 @@
2931
},
3032
"typesVersions": {
3133
"*": {
32-
"crypto": ["./dist/crypto/index.d.ts"],
33-
"*": ["./dist/index.d.ts"]
34+
"crypto": [
35+
"./dist/crypto/index.d.ts"
36+
],
37+
"*": [
38+
"./dist/index.d.ts"
39+
]
3440
}
3541
},
3642
"scripts": {
@@ -55,5 +61,10 @@
5561
"react": "^18.3.1",
5662
"react-dom": "^18.3.1"
5763
},
58-
"keywords": ["livepeer", "video", "streaming", "livestream"]
64+
"keywords": [
65+
"livepeer",
66+
"video",
67+
"streaming",
68+
"livestream"
69+
]
5970
}

packages/core-web/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# livepeer
22

3+
## 5.2.4
4+
5+
### Patch Changes
6+
7+
- [#610](https://github.com/livepeer/ui-kit/pull/610) [`819c0ba`](https://github.com/livepeer/ui-kit/commit/819c0ba671c4c97e2982bfaaeb7b21f32f18f64b) Thanks [@junhyoung-ryu](https://github.com/junhyoung-ryu)! - add calculateDelay function to media controller
8+
9+
- Updated dependencies [[`819c0ba`](https://github.com/livepeer/ui-kit/commit/819c0ba671c4c97e2982bfaaeb7b21f32f18f64b)]:
10+
- @livepeer/core@3.3.1
11+
312
## 5.2.3
413

514
### Patch Changes

packages/core-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@livepeer/core-web",
33
"description": "Livepeer UI Kit's core web library, for adding reactive stores to video elements.",
44
"license": "MIT",
5-
"version": "5.2.3",
5+
"version": "5.2.4",
66
"type": "module",
77
"repository": {
88
"type": "git",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @livepeer/core
22

3+
## 3.3.1
4+
5+
### Patch Changes
6+
7+
- [#610](https://github.com/livepeer/ui-kit/pull/610) [`819c0ba`](https://github.com/livepeer/ui-kit/commit/819c0ba671c4c97e2982bfaaeb7b21f32f18f64b) Thanks [@junhyoung-ryu](https://github.com/junhyoung-ryu)! - add calculateDelay function to media controller
8+
39
## 3.3.0
410

511
### Minor Changes

packages/core/package.json

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Livepeer UI Kit's core vanilla JS library.",
44
"license": "MIT",
55
"type": "module",
6-
"version": "3.3.0",
6+
"version": "3.3.1",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/livepeer/ui-kit.git",
@@ -13,7 +13,9 @@
1313
"main": "./dist/index.cjs",
1414
"module": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
16-
"files": ["dist"],
16+
"files": [
17+
"dist"
18+
],
1719
"exports": {
1820
"./package.json": "./package.json",
1921
".": {
@@ -54,13 +56,27 @@
5456
},
5557
"typesVersions": {
5658
"*": {
57-
"crypto": ["./dist/crypto/index.d.ts"],
58-
"errors": ["./dist/errors/index.d.ts"],
59-
"media": ["./dist/media/index.d.ts"],
60-
"storage": ["./dist/storage/index.d.ts"],
61-
"utils": ["./dist/utils/index.d.ts"],
62-
"version": ["./dist/version/index.d.ts"],
63-
"*": ["./dist/index.d.ts"]
59+
"crypto": [
60+
"./dist/crypto/index.d.ts"
61+
],
62+
"errors": [
63+
"./dist/errors/index.d.ts"
64+
],
65+
"media": [
66+
"./dist/media/index.d.ts"
67+
],
68+
"storage": [
69+
"./dist/storage/index.d.ts"
70+
],
71+
"utils": [
72+
"./dist/utils/index.d.ts"
73+
],
74+
"version": [
75+
"./dist/version/index.d.ts"
76+
],
77+
"*": [
78+
"./dist/index.d.ts"
79+
]
6480
}
6581
},
6682
"scripts": {
@@ -77,5 +93,10 @@
7793
"devDependencies": {
7894
"jose": "^5.3.0"
7995
},
80-
"keywords": ["livepeer", "video", "streaming", "livestream"]
96+
"keywords": [
97+
"livepeer",
98+
"video",
99+
"streaming",
100+
"livestream"
101+
]
81102
}

packages/react/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @livepeer/react
22

3+
## 4.3.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`819c0ba`](https://github.com/livepeer/ui-kit/commit/819c0ba671c4c97e2982bfaaeb7b21f32f18f64b)]:
8+
- @livepeer/core@3.3.1
9+
- @livepeer/core-web@5.2.4
10+
- @livepeer/core-react@3.2.10
11+
312
## 4.3.3
413

514
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@livepeer/react",
33
"description": "React primitives for video apps.",
44
"license": "MIT",
5-
"version": "4.3.3",
5+
"version": "4.3.4",
66
"type": "module",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)