Skip to content

Commit

Permalink
Version Packages (#393)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 2, 2023
1 parent fe44f6e commit a8280b0
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-geese-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-kangaroos-joke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-walls-rhyme.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-pianos-love.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-scissors-perform.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @preact/signals-core

## 1.4.0

### Minor Changes

- [#380](https://github.com/preactjs/signals/pull/380) [`256a331`](https://github.com/preactjs/signals/commit/256a331b5335e54f7e918b3f1068fb9d92d1c613) Thanks [@XantreGodlike](https://github.com/XantreGodlike)! - Add `untracked` function, this allows more granular control within `effect`/`computed` around what should affect re-runs.

## 1.3.1

### Patch Changes
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": "@preact/signals-core",
"version": "1.3.1",
"version": "1.4.0",
"license": "MIT",
"description": "Manage state with style in every framework",
"keywords": [],
Expand Down
11 changes: 11 additions & 0 deletions packages/preact/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @preact/signals

## 1.2.0

### Minor Changes

- [#387](https://github.com/preactjs/signals/pull/387) [`6e4dab4`](https://github.com/preactjs/signals/commit/6e4dab4e8c99217aa2837037a5fc82ee852ee288) Thanks [@XantreGodlike](https://github.com/XantreGodlike)! - Removed difference in behaviour between adapters, signals that use a JSX value will correctly re-render the whole component rather than attempting the JSX-Text optimization.

### Patch Changes

- Updated dependencies [[`256a331`](https://github.com/preactjs/signals/commit/256a331b5335e54f7e918b3f1068fb9d92d1c613)]:
- @preact/signals-core@1.4.0

## 1.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/preact/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preact/signals",
"version": "1.1.5",
"version": "1.2.0",
"license": "MIT",
"description": "Manage state with style in Preact",
"keywords": [],
Expand Down Expand Up @@ -37,7 +37,7 @@
"prepublishOnly": "cd ../.. && pnpm build:preact"
},
"dependencies": {
"@preact/signals-core": "workspace:^1.3.1"
"@preact/signals-core": "workspace:^1.4.0"
},
"peerDependencies": {
"preact": "10.x"
Expand Down
10 changes: 10 additions & 0 deletions packages/react-transform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @preact/signals-react-transform

## 0.0.1

### Patch Changes

- [#375](https://github.com/preactjs/signals/pull/375) [`59115d9`](https://github.com/preactjs/signals/commit/59115d9ea6dfa073255f9803dd7e8a09892d2acc) Thanks [@andrewiggins](https://github.com/andrewiggins)! - Initial alpha release

- Updated dependencies [[`cd3a22d`](https://github.com/preactjs/signals/commit/cd3a22d628c3a535108bc45b8151505dd6fc51c8), [`59115d9`](https://github.com/preactjs/signals/commit/59115d9ea6dfa073255f9803dd7e8a09892d2acc)]:
- @preact/signals-react@1.3.5
4 changes: 2 additions & 2 deletions packages/react-transform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preact/signals-react-transform",
"version": "0.0.1-alpha.0",
"version": "0.0.1",
"license": "MIT",
"description": "Manage state with style in React",
"keywords": [
Expand Down Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@babel/helper-module-imports": "^7.22.5",
"@babel/helper-plugin-utils": "^7.22.5",
"@preact/signals-react": "workspace:^1.3.2",
"@preact/signals-react": "workspace:^1.3.5",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @preact/signals-react

## 1.3.5

### Patch Changes

- [#375](https://github.com/preactjs/signals/pull/375) [`cd3a22d`](https://github.com/preactjs/signals/commit/cd3a22d628c3a535108bc45b8151505dd6fc51c8) Thanks [@andrewiggins](https://github.com/andrewiggins)! - Clean up effect store reference after finishing it

* [#375](https://github.com/preactjs/signals/pull/375) [`59115d9`](https://github.com/preactjs/signals/commit/59115d9ea6dfa073255f9803dd7e8a09892d2acc) Thanks [@andrewiggins](https://github.com/andrewiggins)! - Update internal useSignals API

* Updated dependencies [[`256a331`](https://github.com/preactjs/signals/commit/256a331b5335e54f7e918b3f1068fb9d92d1c613)]:
- @preact/signals-core@1.4.0

## 1.3.4

### Patch Changes
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": "@preact/signals-react",
"version": "1.3.4",
"version": "1.3.5",
"license": "MIT",
"description": "Manage state with style in React",
"keywords": [],
Expand Down Expand Up @@ -44,7 +44,7 @@
"prepublishOnly": "cd ../.. && pnpm build:react-runtime && pnpm build:react"
},
"dependencies": {
"@preact/signals-core": "workspace:^1.3.1",
"@preact/signals-core": "workspace:^1.4.0",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
Expand Down

0 comments on commit a8280b0

Please sign in to comment.