From 06839ccea16f611dae13ad52dd8a8e011a03abcb Mon Sep 17 00:00:00 2001 From: tsutsu3 Date: Sat, 18 Dec 2021 17:25:12 +0900 Subject: [PATCH] Release v1.0.3 (#28) --- CHANGELOG.md | 4 ++++ linkify_it/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"