Skip to content

Commit

Permalink
chore: Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyCoffee committed May 16, 2024
1 parent 763e17f commit 9a78336
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 27 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.8.0 (2024-05-16)

### Breaking Changes

- **atom:** Remove promise unwrapping
- **preact:** Remove useDerive hooks
- **react:** Remove useDerive hooks

### Features

- **core:** Add didInit to all atom types
- **core:** Pass previous value when subscribing to atom or derive
- **select:** Create atom selector helper
- **derive:** Add derive setter functions
- **middleware:** Allow providing atom value types
- **preact:** Add hooks to use settable derive atoms
- **preact:** Allow any atom type in useAtom
- **react:** Add hooks to use settable derive atoms
- **react:** Allow any atom type in useAtom

## 0.7.0 (2024-02-11)

### Breaking Changes
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yaasl",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "yet another atomic store library",
"author": "PrettyCoffee",
"homepage": "https://github.com/PrettyCoffee/yaasl",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaasl/core",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "yet another atomic store library (vanilla-js)",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down Expand Up @@ -38,7 +38,7 @@
"validate": "run-s lint test build"
},
"dependencies": {
"@yaasl/utils": "0.8.0-alpha.4"
"@yaasl/utils": "0.8.0"
},
"eslintConfig": {
"extends": [
Expand Down
6 changes: 3 additions & 3 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaasl/devtools",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "yaasl redux-devtools-extension middleware",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down Expand Up @@ -36,8 +36,8 @@
"validate": "run-s lint test build"
},
"dependencies": {
"@yaasl/core": "0.8.0-alpha.4",
"@yaasl/utils": "0.8.0-alpha.4"
"@yaasl/core": "0.8.0",
"@yaasl/utils": "0.8.0"
},
"eslintConfig": {
"extends": [
Expand Down
6 changes: 3 additions & 3 deletions packages/preact/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaasl/preact",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "yet another atomic store library (preact)",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down Expand Up @@ -41,8 +41,8 @@
"preact": ">=10"
},
"dependencies": {
"@yaasl/core": "0.8.0-alpha.4",
"@yaasl/utils": "0.8.0-alpha.4"
"@yaasl/core": "0.8.0",
"@yaasl/utils": "0.8.0"
},
"devDependencies": {
"@testing-library/preact": "^3.2.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaasl/react",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "yet another atomic store library (react)",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down Expand Up @@ -41,8 +41,8 @@
"react": ">=17"
},
"dependencies": {
"@yaasl/core": "0.8.0-alpha.4",
"@yaasl/utils": "0.8.0-alpha.4"
"@yaasl/core": "0.8.0",
"@yaasl/utils": "0.8.0"
},
"devDependencies": {
"@testing-library/react": "^14.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaasl/utils",
"version": "0.8.0-alpha.4",
"version": "0.8.0",
"description": "Utilities for @yaasl packages",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down

0 comments on commit 9a78336

Please sign in to comment.