diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a28b50..9d0dcbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Change Log ## [Unreleased] + +## [0.5.5] - 2024-04-25 +### Added - feat(atomWithLocation): support location.hash #30 +- feat(atomWithHash): allow the setHash option to be overridden on a per atom set basis #35 +### Changed - fix(atomWithLocation): replaceState function to use window.history.state instead of null #33 + ## [0.5.4] - 2024-02-27 ### Changed - feat(atomWithHash): initial value from hash #31 diff --git a/package.json b/package.json index 3d2edeb..f132f02 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jotai-location", "description": "👻🔗", - "version": "0.5.4", + "version": "0.5.5", "author": "Daishi Kato", "repository": { "type": "git", @@ -32,7 +32,7 @@ "test:debug": "run-s eslint tsc-test jest:debug", "eslint": "eslint --ext .js,.ts,.tsx .", "jest": "jest", - "jest:debug" : "node --inspect ./node_modules/jest/bin/jest.js --runInBand", + "jest:debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand", "tsc-test": "tsc --project . --noEmit", "examples:01_minimal": "DIR=01_minimal EXT=js webpack serve", "examples:02_typescript": "DIR=02_typescript EXT=tsx webpack serve",