Skip to content

Releases: xuanduc987/ts-matching

0.1.2

17 Jun 09:55
Compare
Choose a tag to compare
chore: bump version to 0.1.2

0.1.1

08 Jun 03:00
Compare
Choose a tag to compare
chore: bump version to 0.1.1

release: 0.1.0

04 Jun 05:13
Compare
Choose a tag to compare
** 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

0.0.4

04 Jun 02:29
Compare
Choose a tag to compare
chore: bump version to 0.0.4

0.0.3

04 Jun 01:40
Compare
Choose a tag to compare
chore: bump version to 0.0.3

0.0.2

30 May 09:17
Compare
Choose a tag to compare
chore: bump version to 0.0.2

0.0.1

24 May 13:44
Compare
Choose a tag to compare
Initial version