diff --git a/CHANGELOG.md b/CHANGELOG.md index 4423f72..18bc90c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## v1.3.0(2023-01-28) + - Fix a bug that `Parser.parse_inline()` cannot be called without preceding call of `Parser.parse()`. [#131](https://github.com/frostming/marko/issue/131) - Fix a rendering bug when line breaks exist in a link text. [#126](https://github.com/frostming/marko/issue/126) - Drop support of Python 3.6. diff --git a/marko/__init__.py b/marko/__init__.py index 30f9444..6dc987f 100644 --- a/marko/__init__.py +++ b/marko/__init__.py @@ -23,7 +23,7 @@ from .block import Document from .parser import ElementType -__version__ = "1.2.2" +__version__ = "1.3.0" class SetupDone(Exception):