diff --git a/CHANGELOG.md b/CHANGELOG.md index 36db2db..853567f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.3.2 (2022-02-19) +### Fix +* Update docs ([`a788ff1`](https://github.com/vberlier/tokenstream/commit/a788ff194eb630555a01ba9837a160e40f97dbec)) + ## v1.3.1 (2021-12-06) ### Fix * Sort expected patterns in explanation ([`c1c26cb`](https://github.com/vberlier/tokenstream/commit/c1c26cb874229a5e0319c882f3b6e5567fd14870)) diff --git a/pyproject.toml b/pyproject.toml index 6a28e0a..c605ef5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tokenstream" -version = "1.3.1" +version = "1.3.2" description = "A versatile token stream for handwritten parsers" authors = ["Valentin Berlier "] license = "MIT" diff --git a/tokenstream/__init__.py b/tokenstream/__init__.py index 2c49d33..0f5909f 100644 --- a/tokenstream/__init__.py +++ b/tokenstream/__init__.py @@ -12,7 +12,7 @@ ] -__version__ = "1.3.1" +__version__ = "1.3.2" from .error import * from .location import *