diff --git a/CHANGELOG.md b/CHANGELOG.md index 9afee44..afde204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 2fc2104..19c6a93 100644 --- a/package.json +++ b/package.json @@ -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",