Skip to content

Commit

Permalink
v1.3.1 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowheart authored Jan 22, 2025
1 parent 0bc4893 commit 8d99441
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v1.3.1 (Jan 22, 2025)

### Fixes:

- `immer`: import named `produce` export from immer (#148)
- `atoms`, `react`: use singly-linked WeakRefs to clean up React 18 StrictMode trash (#154)

## v1.3.0 (Dec 11, 2024)

Since React 19 is officially released, we can finally release v1.3.0 officially. In addition to the selector changes from this version's release candidates, this version removes Zedux's package.json `production` exports, which were previously unused except by some rogue build pipelines. Credit to [@marbemac](https://github.com/marbemac) :tada:.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zedux",
"version": "1.3.0",
"version": "1.3.1",
"description": "A Molecular State Engine for React",
"type": "module",
"author": "Joshua Claunch (bowheart <[email protected]>)",
Expand Down
4 changes: 2 additions & 2 deletions packages/atoms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zedux/atoms",
"version": "1.3.0",
"version": "1.3.1",
"description": "A Molecular State Engine for React",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -10,7 +10,7 @@
"url": "https://github.com/Omnistac/zedux/issues"
},
"dependencies": {
"@zedux/core": "^1.3.0"
"@zedux/core": "1.3.1"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zedux/core",
"version": "1.3.0",
"version": "1.3.1",
"description": "A high-level, declarative, composable form of Redux",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/immer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zedux/immer",
"version": "1.3.0",
"version": "1.3.1",
"description": "Official Immer integration for Zedux's store and atomic APIs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -10,7 +10,7 @@
"url": "https://github.com/Omnistac/zedux/issues"
},
"devDependencies": {
"@zedux/atoms": "^1.3.0",
"@zedux/atoms": "1.3.1",
"immer": "^10.1.1"
},
"exports": {
Expand All @@ -36,7 +36,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.3.0",
"@zedux/atoms": "1.3.1",
"immer": ">=9.0.19"
},
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/machines/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zedux/machines",
"version": "1.3.0",
"version": "1.3.1",
"description": "Simple native state machine implementation for Zedux atoms",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -10,7 +10,7 @@
"url": "https://github.com/Omnistac/zedux/issues"
},
"devDependencies": {
"@zedux/atoms": "^1.3.0"
"@zedux/atoms": "1.3.1"
},
"exports": {
".": {
Expand All @@ -36,7 +36,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.3.0"
"@zedux/atoms": "1.3.1"
},
"repository": {
"directory": "packages/machines",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zedux/react",
"version": "1.3.0",
"version": "1.3.1",
"description": "A Molecular State Engine for React",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -10,7 +10,7 @@
"url": "https://github.com/Omnistac/zedux/issues"
},
"dependencies": {
"@zedux/atoms": "^1.3.0"
"@zedux/atoms": "1.3.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
Expand Down

0 comments on commit 8d99441

Please sign in to comment.