Skip to content

Commit

Permalink
v1.1.0 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowheart authored Aug 1, 2023
1 parent f5d3a45 commit 940c7ac
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 13 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## v1.1.0 (Aug 1, 2023)

Republish of v1.1.0-rc.0 with no additional changes since the release candidate looks good

### New Features:

- `atoms`: add `runOnInvalidate` option to `injectPromise` (#69)
- `atoms`: deprecate `injectInvalidate` (prefer `injectSelf`) (#70)
- `core`: micro-optimize iterating and removing store subscribers (#76)

### Fixes:

- `atoms`: make query atoms retain data (#68)
- `core`: point core package's field to the correct file (#75)
- `react`: fix multiple renderers cross-window React warning (#72)
- `atoms`, `immer`, `machines`: prevent injectors from consuming hydrations (#71)

## v1.1.0-rc.0 (Jul 22, 2023)

### New Features:
Expand All @@ -9,7 +26,7 @@
### Fixes:

- `atoms`: make query atoms retain data (#68)
- `core`: point core package's field to the correct file (#75)
- `core`: point core package's field to the correct file (#75)
- `react`: fix multiple renderers cross-window React warning (#72)
- `atoms`, `immer`, `machines`: prevent injectors from consuming hydrations (#71)

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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0"
"@zedux/core": "^1.1.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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0",
"@zedux/atoms": "^1.1.0",
"immer": "^9.0.21"
},
"exports": {
Expand Down Expand Up @@ -41,7 +41,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.1.0-rc.0",
"@zedux/atoms": "^1.1.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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0"
"@zedux/atoms": "^1.1.0"
},
"exports": {
".": {
Expand Down Expand Up @@ -41,7 +41,7 @@
],
"license": "MIT",
"peerDependencies": {
"@zedux/atoms": "^1.1.0-rc.0"
"@zedux/atoms": "^1.1.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.1.0-rc.0",
"version": "1.1.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.1.0-rc.0",
"@zedux/atoms": "^1.1.0",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
Expand Down

0 comments on commit 940c7ac

Please sign in to comment.