From 012e2aa0eee40c7a09800cd1909da3eeef55df85 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Thu, 22 Sep 2022 09:33:47 +0800 Subject: [PATCH] Bump version to 1.2.2 --- CHANGELOG.md | 6 ++++++ marko/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1248f76..a39481c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.2.2(2022-09-22) + +- Fix a bug of markdown renderer, the ordered list index isn't increasing. [#112](https://github.com/frostming/marko/pull/112) +- Fix a crash issue when parsing a list item with NBSP in preceding spaces. [#123](https://github.com/frostming/marko/pull/123) +- Fix a hanging issue when parsing a text with nested brackets. [#124](https://github.com/frostming/marko/pull/124) + ## v1.2.1(2022-05-12) - Fix a bug that tabs between the list bullet and item are not expanded properly. diff --git a/marko/__init__.py b/marko/__init__.py index 3b6ebc0..c0b81bd 100644 --- a/marko/__init__.py +++ b/marko/__init__.py @@ -21,7 +21,7 @@ from .block import Document from .parser import ElementType -__version__ = "1.2.1" +__version__ = "1.2.2" class SetupDone(Exception):