Skip to content

Commit 06ad7ff

Browse files
committed
chore(release): published new version
1 parent 4ef5e81 commit 06ad7ff

17 files changed

+137
-20
lines changed

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+
# [3.0.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency @testing-library/jest-dom to v6 ([ba7f6c0](https://github.com/tsparticles/react/commit/ba7f6c08f5373eaf83838ba579c4a755353ac6b4))
12+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
13+
14+
15+
### Features
16+
17+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
18+
* converted component to hooks API, closes [#49](https://github.com/tsparticles/react/issues/49) ([4a9eaa0](https://github.com/tsparticles/react/commit/4a9eaa018052e244ed217446e8b56cb8dfc582ed))
19+
20+
21+
22+
23+
624
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
725

826

apps/nextjs-beta/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
12+
13+
14+
### Features
15+
16+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
17+
18+
19+
20+
21+
622
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
723

824
**Note:** Version bump only for package nextjs-beta-demo

apps/nextjs-beta/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-beta-demo",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

apps/nextjs/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
12+
13+
14+
### Features
15+
16+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
17+
18+
19+
20+
21+
622
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
723

824
**Note:** Version bump only for package nextjs

apps/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -11,8 +11,8 @@
1111
},
1212
"dependencies": {
1313
"@tsparticles/engine": "^3.0.2",
14-
"@tsparticles/react": "workspace:^",
1514
"@tsparticles/preset-big-circles": "^3.0.0",
15+
"@tsparticles/react": "workspace:^",
1616
"next": "^14.0.3",
1717
"react": "^18.2.0",
1818
"react-dom": "^18.2.0",

apps/react/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency @testing-library/jest-dom to v6 ([ba7f6c0](https://github.com/tsparticles/react/commit/ba7f6c08f5373eaf83838ba579c4a755353ac6b4))
12+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
13+
14+
15+
### Features
16+
17+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
18+
19+
20+
21+
22+
623
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
724

825
**Note:** Version bump only for package react-demo

apps/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-demo",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"private": true,
55
"dependencies": {
66
"@tsparticles/engine": "^3.0.2",

components/react/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
# [3.0.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
12+
13+
14+
### Features
15+
16+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
17+
* converted component to hooks API, closes [#49](https://github.com/tsparticles/react/issues/49) ([4a9eaa0](https://github.com/tsparticles/react/commit/4a9eaa018052e244ed217446e8b56cb8dfc582ed))

components/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/react",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"type": "module",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -16,9 +16,9 @@
1616
"dist"
1717
],
1818
"peerDependencies": {
19+
"@tsparticles/engine": "^3.0.2",
1920
"react": ">=16.8.0",
20-
"react-dom": ">=16.8.0",
21-
"@tsparticles/engine": "^3.0.2"
21+
"react-dom": ">=16.8.0"
2222
},
2323
"devDependencies": {
2424
"@tsparticles/engine": "^3.0.2",
@@ -27,10 +27,10 @@
2727
"@typescript-eslint/eslint-plugin": "^6.13.2",
2828
"@typescript-eslint/parser": "^6.13.2",
2929
"@vitejs/plugin-react": "^4.2.1",
30-
"glob": "^10.3.10",
3130
"eslint": "^8.55.0",
3231
"eslint-plugin-react-hooks": "^4.6.0",
3332
"eslint-plugin-react-refresh": "^0.4.5",
33+
"glob": "^10.3.10",
3434
"react": "^18.2.0",
3535
"react-dom": "^18.2.0",
3636
"typescript": "^5.3.3",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"components/*",
66
"templates/*"
77
],
8-
"version": "3.0.0-beta.1",
8+
"version": "3.0.0",
99
"npmClient": "pnpm",
1010
"conventionalCommits": true,
1111
"command": {

pnpm-lock.yaml

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

templates/react-ts/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency @testing-library/jest-dom to v6 ([ba7f6c0](https://github.com/tsparticles/react/commit/ba7f6c08f5373eaf83838ba579c4a755353ac6b4))
12+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
13+
14+
15+
### Features
16+
17+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
18+
19+
20+
21+
22+
623
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
724

825
**Note:** Version bump only for package cra-template-particles-typescript

templates/react-ts/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cra-template-particles-typescript",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"description": "Official TypeScript React tsParticles template",
55
"keywords": [
66
"front-end",
@@ -89,14 +89,14 @@
8989
"@testing-library/jest-dom": "^6.1.5",
9090
"@testing-library/react": "^14.1.2",
9191
"@testing-library/user-event": "^14.5.1",
92+
"@tsparticles/engine": "^3.0.2",
93+
"@tsparticles/react": "^3.0.0",
9294
"@types/jest": "^29.5.10",
9395
"@types/node": "^20.10.3",
9496
"@types/react": "^18.2.42",
9597
"@types/react-dom": "^18.2.17",
96-
"@tsparticles/react": "^3.0.0-beta.1",
9798
"tslib": "^2.6.2",
9899
"tsparticles": "^3.0.2",
99-
"@tsparticles/engine": "^3.0.2",
100100
"typescript": "^5.3.3",
101101
"web-vitals": "^3.5.0"
102102
},

templates/react-ts/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@types/react": "^18.2.42",
99
"@types/react-dom": "^18.2.17",
1010
"@types/jest": "^29.5.10",
11-
"@tsparticles/react": "^3.0.0-beta.1",
11+
"@tsparticles/react": "^3.0.0",
1212
"@tsparticles/engine": "^3.0.2",
1313
"tslib": "^2.6.2",
1414
"typescript": "^5.3.2",

templates/react/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/tsparticles/react/compare/v2.12.2...v3.0.0) (2023-12-07)
7+
8+
9+
### Bug Fixes
10+
11+
* fixed component, it was refreshing infinite times for a bug. now it works perfectly ([4ef5e81](https://github.com/tsparticles/react/commit/4ef5e8197f1364e3a62c8262ae04c9272457047a))
12+
13+
14+
### Features
15+
16+
* added particles setup function (name not definitive), updated to v3 ([e164c66](https://github.com/tsparticles/react/commit/e164c669b515d30057059ef8f7a8d35ff562b5e3))
17+
18+
19+
20+
21+
622
## [3.0.0-beta.1](https://github.com/tsparticles/react/compare/v2.12.1...v3.0.0-beta.1) (2023-08-11)
723

824
**Note:** Version bump only for package cra-template-particles

templates/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cra-template-particles",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"description": "Official React tsParticles template",
55
"keywords": [
66
"front-end",
@@ -86,10 +86,10 @@
8686
}
8787
],
8888
"dependencies": {
89-
"@tsparticles/react": "^3.0.0-beta.1",
89+
"@tsparticles/engine": "^3.0.2",
90+
"@tsparticles/react": "^3.0.0",
9091
"tslib": "^2.6.2",
91-
"tsparticles": "^3.0.2",
92-
"@tsparticles/engine": "^3.0.2"
92+
"tsparticles": "^3.0.2"
9393
},
9494
"devDependencies": {
9595
"fs-extra": "^11.2.0"

templates/react/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"dependencies": {
4-
"@tsparticles/react": "^3.0.0-beta.1",
4+
"@tsparticles/react": "^3.0.0",
55
"@tsparticles/engine": "^3.0.2",
66
"tsparticles": "^3.0.2",
77
"tslib": "^2.6.2"

0 commit comments

Comments
 (0)