Skip to content

Commit ede9f5f

Browse files
authored
chore: release main (#35)
1 parent c436308 commit ede9f5f

File tree

7 files changed

+62
-6
lines changed

7 files changed

+62
-6
lines changed

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
".": "3.0.1",
3-
"packages/timer": "3.1.2",
4-
"packages/use-parent-size": "1.0.0"
3+
"packages/timer": "4.0.0",
4+
"packages/use-parent-size": "2.0.0"
55
}

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,40 @@
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/monorepo-v3.0.1...monorepo-v3.0.1) (2024-10-20)
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:** allows timer to be paused ([375b26f](https://github.com/laverve/ui-toolbox/commit/375b26f3448c6c07f4054080ebb86bfcaaa9d59f))
31+
* **timer:** make timer 100% height ([47ecf4e](https://github.com/laverve/ui-toolbox/commit/47ecf4e71af5a7881d9bc7e290c207db98bc9a85))
32+
* **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))
33+
* upgrades manifest ([c436308](https://github.com/laverve/ui-toolbox/commit/c436308ec9d5080f1ff2a2dc38868b8a5815b5c7))
34+
35+
36+
### Miscellaneous Chores
37+
38+
* switch to moduleResolution=Node ([#16](https://github.com/laverve/ui-toolbox/issues/16)) ([5634c9f](https://github.com/laverve/ui-toolbox/commit/5634c9fe65dbfb58b35e4e59fe431d4799c0039e))
39+
640
## [3.0.1](https://github.com/laverve/ui-toolbox/compare/laverve-monorepo-v3.0.1...laverve-monorepo-v3.0.1) (2024-10-20)
741

842

package-lock.json

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

packages/timer/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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+
## [4.0.0](https://github.com/laverve/ui-toolbox/compare/timer-v3.1.2...timer-v4.0.0) (2024-10-20)
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+
617
## [3.1.2](https://github.com/laverve/ui-toolbox/compare/timer-v3.1.1...timer-v3.1.2) (2024-10-20)
718

819

packages/timer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
"build": "rimraf ./dist && tsc",
4343
"build:dev": "tsc -w"
4444
},
45-
"version": "3.1.2",
45+
"version": "4.0.0",
4646
"webpack": "./src/index.ts"
4747
}

packages/use-parent-size/CHANGELOG.md

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

3+
## [2.0.0](https://github.com/laverve/ui-toolbox/compare/use-parent-size-v1.0.0...use-parent-size-v2.0.0) (2024-10-20)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* first available for public use version
9+
10+
### Bug Fixes
11+
12+
* breaking change ([a6f87f3](https://github.com/laverve/ui-toolbox/commit/a6f87f3a879e45a59b48a66b2a5de57217642fb7))
13+
314
## 1.0.0 (2024-09-07)
415

516

packages/use-parent-size/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
"build": "rimraf ./dist && tsc",
4141
"build:dev": "tsc -w"
4242
},
43-
"version": "1.0.0",
43+
"version": "2.0.0",
4444
"webpack": "./src/index.ts"
4545
}

0 commit comments

Comments
 (0)