diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bc05c0b..519279eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [4.1.1](https://github.com/andipaetzold/react-firehooks/compare/v4.1.0...v4.1.1) (2024-08-15) + + +### Bug Fixes + +* initial state was reset in single subscription hooks in strict mode in dev ([d0db2af](https://github.com/andipaetzold/react-firehooks/commit/d0db2af76434a617d7e87cf9b0a7ff9f716880f4)) +* race condition in multi "*Once" hooks ([e7af873](https://github.com/andipaetzold/react-firehooks/commit/e7af8731a38d823789f97ecaa7569d20e8d8fdcb)) +* race condition in single `*Once` hooks when reference changes ([d835504](https://github.com/andipaetzold/react-firehooks/commit/d835504c253017bf08bb205994949d2dc38abcc3)) + # [4.1.0](https://github.com/andipaetzold/react-firehooks/compare/v4.0.3...v4.1.0) (2024-03-14) diff --git a/package-lock.json b/package-lock.json index ce2f9777..4e4bd2b5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-firehooks", - "version": "4.1.0", + "version": "4.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "react-firehooks", - "version": "4.1.0", + "version": "4.1.1", "license": "MIT", "devDependencies": { "@semantic-release/changelog": "6.0.3", diff --git a/package.json b/package.json index e4053ae2..bc6d1829 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-firehooks", - "version": "4.1.0", + "version": "4.1.1", "description": "Lightweight dependency-free collection of React hooks for Firebase", "main": "./lib/index.js", "types": "./lib/index.d.ts",