Skip to content

Commit

Permalink
v1.3.0 (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowheart authored Dec 11, 2024
1 parent 3d9d6f7 commit 06f06a1
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 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:.

### Fixes:

- `react`: fallback to React 18 internals for getting component names (#139)
- `atoms`, `core`, `immer`, `machines`, `react`: remove package.json production exports (#137)

## v1.3.0-rc.2 (Jul 31, 2024)

### Fixes:
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-rc.2",
"version": "1.3.0",
"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-rc.2",
"version": "1.3.0",
"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-rc.2"
"@zedux/core": "^1.3.0"
},
"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-rc.2",
"version": "1.3.0",
"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-rc.2",
"version": "1.3.0",
"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-rc.2",
"@zedux/atoms": "^1.3.0",
"immer": "^9.0.21"
},
"exports": {
Expand All @@ -36,7 +36,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.3.0-rc.2",
"@zedux/atoms": "^1.3.0",
"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-rc.2",
"version": "1.3.0",
"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-rc.2"
"@zedux/atoms": "^1.3.0"
},
"exports": {
".": {
Expand All @@ -36,7 +36,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.3.0-rc.2"
"@zedux/atoms": "^1.3.0"
},
"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-rc.2",
"version": "1.3.0",
"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-rc.2"
"@zedux/atoms": "^1.3.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
Expand Down

0 comments on commit 06f06a1

Please sign in to comment.