diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd6315..c4e0d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v1.0.3 (2021-12-18) + +- Fixed [#98](https://github.com/markdown-it/linkify-it/issues/98). Don't count `;` at the end of link (when followed with space). + ## v1.0.2 (2021-10-09) - Fix: Schema key containing - not producing matches (#26) diff --git a/linkify_it/__init__.py b/linkify_it/__init__.py index 21152fc..5d3653b 100644 --- a/linkify_it/__init__.py +++ b/linkify_it/__init__.py @@ -1,4 +1,4 @@ from .main import LinkifyIt # noqa: F401p from .main import SchemaError # noqa: F401p -__version__ = "1.0.2" +__version__ = "1.0.3"