Skip to content

Commit 9a4673d

Browse files
committedDec 28, 2020
chore(release): release
- @byteclaw/[email protected] - @byteclaw/[email protected] - @byteclaw/[email protected] - @byteclaw/[email protected] - @byteclaw/[email protected] - @byteclaw/[email protected]
1 parent 2b4e3f9 commit 9a4673d

File tree

12 files changed

+64
-13
lines changed

12 files changed

+64
-13
lines changed
 

‎packages/hooks/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+
## <small>1.1.3 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
10+
11+
12+
13+
614
## <small>1.1.2 (2020-05-21)</small>
715

816
**Note:** Version bump only for package @byteclaw/hooks

‎packages/hooks/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/hooks",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Collection of useful React hooks for your applications",
55
"main": "dist/hooks.js",
66
"module": "dist/hooks.esm.js",
@@ -17,11 +17,11 @@
1717
"typecheck": "tsc --noEmit"
1818
},
1919
"dependencies": {
20-
"@byteclaw/use-event-emitter": "^1.0.0",
21-
"@byteclaw/use-overflow-scroll-position": "^1.0.1",
22-
"@byteclaw/use-prompt": "^1.1.0",
23-
"@byteclaw/use-static-callback": "^1.1.0",
24-
"@byteclaw/use-unique-id": "^1.0.0"
20+
"@byteclaw/use-event-emitter": "^1.0.1",
21+
"@byteclaw/use-overflow-scroll-position": "^1.0.2",
22+
"@byteclaw/use-prompt": "^1.1.1",
23+
"@byteclaw/use-static-callback": "^1.1.1",
24+
"@byteclaw/use-unique-id": "^1.0.1"
2525
},
2626
"peerDependencies": {
2727
"@types/react": "^16.9.11",
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## <small>1.0.1 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
* build: update dependencies and introduce commitlint ([019cb83](https://github.com/byteclaw/hooks/commit/019cb83))

‎packages/use-event-emitter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/use-event-emitter",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "React hooks and components for construction of simple event emitters",
55
"main": "dist/use-event-emitter.js",
66
"module": "dist/use-event-emitter.esm.js",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## <small>1.0.2 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
* build: update dependencies and introduce commitlint ([019cb83](https://github.com/byteclaw/hooks/commit/019cb83))

‎packages/use-overflow-scroll-position/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/use-overflow-scroll-position",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "React hook for calculating number of pixels scrolled through in an overflow:scroll enabled container",
55
"main": "dist/use-overflow-scroll-position.js",
66
"module": "dist/use-overflow-scroll-position.esm.js",

‎packages/use-prompt/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+
## <small>1.1.1 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
10+
11+
12+
13+
614
## 1.1.0 (2020-05-21)
715

816
* feat(use-prompt): deduplicate prompts ([b247f81](https://github.com/byteclaw/hooks/commit/b247f81))

‎packages/use-prompt/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/use-prompt",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "React hook and component for prompting the user to input anything using your custom components",
55
"main": "dist/use-prompt.js",
66
"module": "dist/use-prompt.esm.js",
@@ -17,8 +17,8 @@
1717
"typecheck": "tsc --noEmit"
1818
},
1919
"dependencies": {
20-
"@byteclaw/use-event-emitter": "^1.0.0",
21-
"@byteclaw/use-unique-id": "^1.0.0"
20+
"@byteclaw/use-event-emitter": "^1.0.1",
21+
"@byteclaw/use-unique-id": "^1.0.1"
2222
},
2323
"peerDependencies": {
2424
"@types/react": "^16.9.11",

‎packages/use-static-callback/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+
## <small>1.1.1 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
10+
11+
12+
13+
614
## 1.1.0 (2020-02-28)
715

816
* feat(use-static-callback): add useStaticCallbackCreator hook ([4b75e3d](https://github.com/byteclaw/hooks/commit/4b75e3d))

‎packages/use-static-callback/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/use-static-callback",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "React's useCallback hook for function declarations",
55
"main": "dist/use-static-callback.js",
66
"module": "dist/use-static-callback.esm.js",

‎packages/use-unique-id/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## <small>1.0.1 (2020-12-28)</small>
7+
8+
* fix: allow react 17 ([2b4e3f9](https://github.com/byteclaw/hooks/commit/2b4e3f9))
9+
* build: update dependencies and introduce commitlint ([019cb83](https://github.com/byteclaw/hooks/commit/019cb83))

‎packages/use-unique-id/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@byteclaw/use-unique-id",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "React hook to generate unique ids for your components",
55
"main": "dist/use-unique-id.js",
66
"module": "dist/use-unique-id.esm.js",

0 commit comments

Comments
 (0)
Please sign in to comment.