Skip to content

Commit 8fef1af

Browse files
authored
chore: release main (#25)
1 parent c107750 commit 8fef1af

File tree

7 files changed

+65
-8
lines changed

7 files changed

+65
-8
lines changed

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
".": "3.0.1",
3-
"packages/components/timer": "3.1.0",
4-
"apps/apps-storybook": "4.0.0",
3+
"packages/components/timer": "3.1.1",
4+
"apps/apps-storybook": "5.0.0",
55
"packages/components/use-parent-size": "1.0.0"
66
}

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
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+
## [3.0.1](https://github.com/laverve/ui-toolbox/compare/laverve-monorepo-v3.0.1...laverve-monorepo-v3.0.1) (2024-09-08)
7+
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* first available for public use version
12+
* fixes deploy gh pages script ([#2](https://github.com/laverve/ui-toolbox/issues/2))
13+
14+
### Features
15+
16+
* **timer:** adds reset method ([095d356](https://github.com/laverve/ui-toolbox/commit/095d3562a263caf25c1dbb92817a0ec6c90f686b))
17+
* **useParentSize:** adds useParentSize hook ([c090d93](https://github.com/laverve/ui-toolbox/commit/c090d93329cd8110fb29807c317e9eed001b3a25))
18+
19+
20+
### Bug Fixes
21+
22+
* adds readme doc for reset function ([5f5d707](https://github.com/laverve/ui-toolbox/commit/5f5d707e894a761aceaeb427147b42c49f7c067b))
23+
* breaking change ([a6f87f3](https://github.com/laverve/ui-toolbox/commit/a6f87f3a879e45a59b48a66b2a5de57217642fb7))
24+
* do not reset timer start and end time when stopping counting ([f7e173c](https://github.com/laverve/ui-toolbox/commit/f7e173cf5326e3afb537014810fceff3465a44f8))
25+
* fixes deploy gh pages script ([#2](https://github.com/laverve/ui-toolbox/issues/2)) ([951a870](https://github.com/laverve/ui-toolbox/commit/951a870b6fdad83fd61a2a5dd0ad1ca4e21cf378))
26+
* fixes package-lock.json ([2854e78](https://github.com/laverve/ui-toolbox/commit/2854e781e9188f14699922854b57f042dd2a1a46))
27+
* fixes pipeline ([4ced108](https://github.com/laverve/ui-toolbox/commit/4ced1082eb7d44e958c9ea2ec3863bb8fd70fcac))
28+
* fixes styles ([c96b880](https://github.com/laverve/ui-toolbox/commit/c96b88020b9176af56f20681482c34fcf7689d54))
29+
* improves timer's state calculation ([7776f4d](https://github.com/laverve/ui-toolbox/commit/7776f4d57cc2eaa31acc9e2acc952d044b7065ea))
30+
* **timer:** make timer 100% height ([47ecf4e](https://github.com/laverve/ui-toolbox/commit/47ecf4e71af5a7881d9bc7e290c207db98bc9a85))
31+
* **timer:** reset timer if type or timeout were changed ([#20](https://github.com/laverve/ui-toolbox/issues/20)) ([a411dfd](https://github.com/laverve/ui-toolbox/commit/a411dfd2112a0513ee3cde8e952e38f7cc92611a))
32+
33+
34+
### Miscellaneous Chores
35+
36+
* switch to moduleResolution=Node ([#16](https://github.com/laverve/ui-toolbox/issues/16)) ([5634c9f](https://github.com/laverve/ui-toolbox/commit/5634c9fe65dbfb58b35e4e59fe431d4799c0039e))
37+
638
## [3.0.1](https://github.com/laverve/ui-toolbox/compare/laverve-monorepo-v3.0.1...laverve-monorepo-v3.0.1) (2024-09-07)
739

840

apps/apps-storybook/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## [5.0.0](https://github.com/laverve/ui-toolbox/compare/storybook-v4.0.0...storybook-v5.0.0) (2024-09-08)
7+
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* first available for public use version
12+
13+
### Bug Fixes
14+
15+
* breaking change ([a6f87f3](https://github.com/laverve/ui-toolbox/commit/a6f87f3a879e45a59b48a66b2a5de57217642fb7))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @laverve/timer bumped from ^3.1.0 to ^3.1.1
23+
624
## [4.0.0](https://github.com/laverve/ui-toolbox/compare/storybook-v3.0.0...storybook-v4.0.0) (2024-09-07)
725

826

apps/apps-storybook/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://github.com/laverve/fusion/issues"
66
},
77
"dependencies": {
8-
"@laverve/timer": "^3.1.0",
8+
"@laverve/timer": "^3.1.1",
99
"react": "^18.2.0"
1010
},
1111
"description": "Component documentation via Storybook",
@@ -45,5 +45,5 @@
4545
"lint:staged": "lint-staged",
4646
"start:dev": "sb dev --port 9000"
4747
},
48-
"version": "4.0.0"
48+
"version": "5.0.0"
4949
}

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/timer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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+
## [3.1.1](https://github.com/laverve/ui-toolbox/compare/timer-v3.1.0...timer-v3.1.1) (2024-09-08)
7+
8+
9+
### Bug Fixes
10+
11+
* **timer:** make timer 100% height ([47ecf4e](https://github.com/laverve/ui-toolbox/commit/47ecf4e71af5a7881d9bc7e290c207db98bc9a85))
12+
613
## [3.1.0](https://github.com/laverve/ui-toolbox/compare/timer-v3.0.1...timer-v3.1.0) (2024-09-07)
714

815

packages/components/timer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343
"build:packages": "rimraf ./dist && tsc",
4444
"build:dev": "tsc"
4545
},
46-
"version": "3.1.0",
46+
"version": "3.1.1",
4747
"webpack": "./src/index.ts"
4848
}

0 commit comments

Comments
 (0)