Skip to content

Commit 1e60144

Browse files
committed
Bump to v1.0.4
1 parent d0fc738 commit 1e60144

File tree

6 files changed

+24
-18
lines changed

6 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
## [Unreleased]
1010

11+
12+
## [1.0.4] - 2022-10-19
13+
1114
### Fixed
12-
- Fix `useStageRerenderer` hook in `React.StrictMode` ([#285])
15+
- Fixed reconciler to check that parent exists before calling `appendChild` ([#291])
16+
- Fixed `useStageRerenderer` hook in `React.StrictMode` ([#285])
1317

1418

1519
## [1.0.3] - 2022-10-11
@@ -34,7 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3438

3539
### Added
3640
- Added ReactDOM-like prop validation in development ([#47])
37-
- Add ES format output
41+
- Added ES format output
3842
- Added missing `prop-types` dependency ([#221])
3943

4044
### Changed
@@ -427,8 +431,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
427431
- Added `<TilingSprite />` component
428432

429433

430-
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...HEAD
431-
[1.0.3]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...v1.0.3
434+
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.4...HEAD
435+
[1.0.4]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...v1.0.4
436+
[1.0.3]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.2...v1.0.3
432437
[1.0.2]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.1...v1.0.2
433438
[1.0.1]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.0...v1.0.1
434439
[1.0.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.3...v1.0.0
@@ -478,6 +483,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
478483
[0.2.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.1...v0.2.0
479484
[0.1.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.0...v0.1.1
480485

486+
[#291]: https://github.com/michalochman/react-pixi-fiber/pull/291
481487
[#286]: https://github.com/michalochman/react-pixi-fiber/pull/286
482488
[#285]: https://github.com/michalochman/react-pixi-fiber/issues/285
483489
[#283]: https://github.com/michalochman/react-pixi-fiber/pull/283

examples/package-lock.json

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

examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"prop-types": "^15.7.2",
1010
"react": "^17.0.2",
1111
"react-dom": "^17.0.2",
12-
"react-pixi-fiber": "1.0.3",
12+
"react-pixi-fiber": "1.0.4",
1313
"react-router-dom": "^5.2.0",
1414
"react-scripts": "5.0.1",
1515
"stats.js": "^0.17.0",

examples/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8655,10 +8655,10 @@ react-is@^18.0.0:
86558655
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b"
86568656
integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
86578657

8658-
8659-
version "1.0.3"
8660-
resolved "https://registry.yarnpkg.com/react-pixi-fiber/-/react-pixi-fiber-1.0.3.tgz#87c1fc22c55994deb5d74e5b9272f0b5ba26072d"
8661-
integrity sha512-HL+TQxWqBZhGr+qHABesFdfxZkZr133isnSVj21svS3ujrXOAT9nQjGM4Kpc4iprk0l8pulxWRn8C03HoOoTgQ==
8658+
8659+
version "1.0.4"
8660+
resolved "https://registry.yarnpkg.com/react-pixi-fiber/-/react-pixi-fiber-1.0.4.tgz#9a1af49098ca083cf39d5c248515f81190c0e25d"
8661+
integrity sha512-Jl4PbSrvI5HwWeezqHI8IbksSj5kJcFZaWAw03cE8FeQHQ696DfOgFrNS/tCtIzmOLd+KBhQOp+QJZCMuCxNTQ==
86628662
dependencies:
86638663
fbjs "^3.0.0"
86648664
react-reconciler "^0.26.2"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-pixi-fiber",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "React Fiber renderer for PixiJS",
55
"main": "index.js",
66
"umd:main": "index.umd.js",

0 commit comments

Comments
 (0)