Skip to content

Commit

Permalink
chore: Release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyCoffee committed Jun 15, 2024
1 parent 92ea2c0 commit 684ad10
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 27 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.10.1 (2024-06-15)

### Bug Fixes

- **preact:** Use correct initial value with useAtomValue

## 0.10.0 (2024-06-09)

### 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.10.0",
"version": "0.10.1",
"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.10.0",
"version": "0.10.1",
"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.10.0"
"@yaasl/utils": "0.10.1"
},
"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.10.0",
"version": "0.10.1",
"description": "yaasl debugging tools (e.g. 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.10.0",
"@yaasl/utils": "0.10.0"
"@yaasl/core": "0.10.1",
"@yaasl/utils": "0.10.1"
},
"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.10.0",
"version": "0.10.1",
"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.10.0",
"@yaasl/utils": "0.10.0"
"@yaasl/core": "0.10.1",
"@yaasl/utils": "0.10.1"
},
"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.10.0",
"version": "0.10.1",
"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.10.0",
"@yaasl/utils": "0.10.0"
"@yaasl/core": "0.10.1",
"@yaasl/utils": "0.10.1"
},
"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.10.0",
"version": "0.10.1",
"description": "Utilities for @yaasl packages",
"author": "PrettyCoffee",
"license": "MIT",
Expand Down

0 comments on commit 684ad10

Please sign in to comment.