Skip to content

Commit

Permalink
[ci] release (#176)
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 Oct 4, 2022
1 parent 8573803 commit 9f94ab8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 31 deletions.
15 changes: 0 additions & 15 deletions .changeset/rare-emus-grin.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/three-donkeys-mate.md

This file was deleted.

28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# corset

## 2.3.0

### Minor Changes

- c3aaec0: Allow multiple store-set within a rule

```css
#app {
store-root: app;
store-set: app first "Wilbur";
store-set: app last "Phillips";
--full-name: store-get(app, first) " " store-get(app, last);
text: var(--full-name);
}
```

- 8573803: Allow multiple store-root on an element

You can now set multiple stores on an element:

```css
#app {
store-root: one, two;
store-set: one name "Matthew";
store-set: two name "Wilbur";
}
```

## 2.2.3

### Patch Changes
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": "corset",
"version": "2.2.3",
"version": "2.3.0",
"description": "Declarative DOM binding, without the complexity of JSX/templates.",
"type": "module",
"main": "./lib/main.js",
Expand Down

0 comments on commit 9f94ab8

Please sign in to comment.