Skip to content

Commit c596c30

Browse files
committed
1.5.0
Automatically generated by python-semantic-release
1 parent 7a8e799 commit c596c30

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!--next-version-placeholder-->
44

5+
## v1.5.0 (2023-01-05)
6+
### Feature
7+
* Make it possible to swap the underlying regex module ([`b47995e`](https://github.com/vberlier/tokenstream/commit/b47995ee40c0e1c43afa68bc891770670e0e1502))
8+
9+
### Fix
10+
* Allow expect_eof() to succeed even if the "eof" token was already consumed ([`7a8e799`](https://github.com/vberlier/tokenstream/commit/7a8e7995e3e9d74a7146e15c30440795ce026fcc))
11+
* Update typing ([`0ce06c7`](https://github.com/vberlier/tokenstream/commit/0ce06c7923a694496382060646d91317f6b8bed9))
12+
513
## v1.4.2 (2022-06-02)
614
### Fix
715
* Update mudkip ([`a58854c`](https://github.com/vberlier/tokenstream/commit/a58854cb7c3a699653d02dc4de82d21d45f637f9))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tokenstream"
3-
version = "1.4.2"
3+
version = "1.5.0"
44
description = "A versatile token stream for handwritten parsers"
55
authors = ["Valentin Berlier <[email protected]>"]
66
license = "MIT"

tokenstream/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
]
1313

1414

15-
__version__ = "1.4.2"
15+
__version__ = "1.5.0"
1616

1717
from .error import *
1818
from .location import *

0 commit comments

Comments
 (0)