Skip to content

Commit

Permalink
chore(release): release 1.3.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.3.0](v1.2.0...v1.3.0) (2021-11-28)

### Bug Fixes

* **parsers/float:** fix regexps, options & tests ([78fa9af](78fa9af))
* **parsers/integer:** fix regexp ([c689144](c689144))
* **parsers/integer:** fix regexps, options & tests ([2421d6d](2421d6d))

### Features

* **parsers/eof:** add `eof` parser ([d88a3f2](d88a3f2))
* **parsers/float:** add `float` parser ([f993009](f993009))
* **parsers/integer:** add `integer` parser ([f206d49](f206d49))
* **parsers/letter:** add `letter` and `letters` parsers ([2540b17](2540b17))
* **parsers/newline:** add `newline` parser ([ae8d6ec](ae8d6ec))
* **parsers/rest:** add `rest` parser ([1c4c745](1c4c745))
* **parsers/whitespace:** add `whitespace` & `whitespaceOptional` parsers ([821680a](821680a))
  • Loading branch information
semantic-release-bot committed Nov 28, 2021
1 parent f8620b5 commit e76249b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# [1.3.0](https://github.com/norskeld/sigma/compare/v1.2.0...v1.3.0) (2021-11-28)


### Bug Fixes

* **parsers/float:** fix regexps, options & tests ([78fa9af](https://github.com/norskeld/sigma/commit/78fa9af8e3a998cf7f0970528d361699183e393c))
* **parsers/integer:** fix regexp ([c689144](https://github.com/norskeld/sigma/commit/c68914446a12f7adc4f9b30378ccfa7789db8f60))
* **parsers/integer:** fix regexps, options & tests ([2421d6d](https://github.com/norskeld/sigma/commit/2421d6df6900aea0e2a4d7f3758e956a65b611e7))


### Features

* **parsers/eof:** add `eof` parser ([d88a3f2](https://github.com/norskeld/sigma/commit/d88a3f2ccbc6a9de1864950b3cfa232616626ced))
* **parsers/float:** add `float` parser ([f993009](https://github.com/norskeld/sigma/commit/f9930092708f8bab1c1517b02214d983d634d756))
* **parsers/integer:** add `integer` parser ([f206d49](https://github.com/norskeld/sigma/commit/f206d49c15ff8c415a7dd23674bea3f24110c4de))
* **parsers/letter:** add `letter` and `letters` parsers ([2540b17](https://github.com/norskeld/sigma/commit/2540b1762c9c5082c5818e60301681199f370307))
* **parsers/newline:** add `newline` parser ([ae8d6ec](https://github.com/norskeld/sigma/commit/ae8d6ec60ce9e1975aa6bd03e258a351e73b8560))
* **parsers/rest:** add `rest` parser ([1c4c745](https://github.com/norskeld/sigma/commit/1c4c745343cb5c4747d542b10e10c20b3456ce70))
* **parsers/whitespace:** add `whitespace` & `whitespaceOptional` parsers ([821680a](https://github.com/norskeld/sigma/commit/821680a4c5b53730c0c731ef312e123ceec12668))

# [1.2.0](https://github.com/norskeld/sigma/compare/v1.1.1...v1.2.0) (2021-11-17)

### Features
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": "@nrsk/sigma",
"version": "1.2.0",
"version": "1.3.0",
"description": "TypeScript parser combinator library for building fast and convenient parsers.",
"main": "./index.cjs",
"module": "./index.mjs",
Expand Down

0 comments on commit e76249b

Please sign in to comment.