Skip to content

Commit

Permalink
release: 0.1.0
Browse files Browse the repository at this point in the history
** Breaking changes; simply pattern
```
match(option).with{
  Some: () => 1,
  None: () => 1,
}
```
is no longer valid, use
```
match(option).with{
  Some_value: () => 1,
  None: () => 1,
}
```
instead
  • Loading branch information
xuanduc987 committed Jun 4, 2021
1 parent 17c7dd6 commit e654e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-matching",
"version": "0.0.4",
"version": "0.1.0",
"description": "A pattern matching library for typescript with smart type inference.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand Down

0 comments on commit e654e60

Please sign in to comment.