Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 26, 2021
1 parent e0fd12a commit ef9a954
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-beds-trade.md

This file was deleted.

12 changes: 9 additions & 3 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# xstate

## 4.16.1

### Patch Changes

- [`af6b7c70`](https://github.com/davidkpiano/xstate/commit/af6b7c70015db29d84f79dfd29ea0dc221b8f3e6) [#1865](https://github.com/davidkpiano/xstate/pull/1865) Thanks [@Andarist](https://github.com/Andarist)! - Improved `.matches(value)` inference for typestates containing union types as values.

## 4.16.0

### Minor Changes
Expand Down Expand Up @@ -130,7 +136,7 @@
```js
// ...
actions: stop((context) => context.someActor);
actions: stop(context => context.someActor);
```
### Patch Changes
Expand Down Expand Up @@ -368,10 +374,10 @@
```js
entry: [
choose([
{ cond: (ctx) => ctx > 100, actions: raise('TOGGLE') },
{ cond: ctx => ctx > 100, actions: raise('TOGGLE') },
{
cond: 'hasMagicBottle',
actions: [assign((ctx) => ({ counter: ctx.counter + 1 }))]
actions: [assign(ctx => ({ counter: ctx.counter + 1 }))]
},
{ actions: ['fallbackAction'] }
])
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": "xstate",
"version": "4.16.0",
"version": "4.16.1",
"description": "Finite State Machines and Statecharts for the Modern Web.",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-scxml/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"xml-js": "^1.6.11",
"xstate": "^4.16.0"
"xstate": "^4.16.1"
},
"devDependencies": {
"@scion-scxml/test-framework": "^2.0.15",
Expand Down

0 comments on commit ef9a954

Please sign in to comment.