From 84bea5580d2109e5b393cb46e7ebe6785cde7a11 Mon Sep 17 00:00:00 2001 From: tsutsu3 Date: Tue, 2 May 2023 02:38:16 +0900 Subject: [PATCH] Release v2.0.1 (#40) --- CHANGELOG.md | 5 +++++ linkify_it/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba25abc..6a6f687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## v2.0.1 (2023-05-02) + +- Update development tools +- Fix sdist is missing tests + ## v2.0.0 (2022-05-07) - Add `matchAtStart` method to match full URLs at the start of the string. diff --git a/linkify_it/__init__.py b/linkify_it/__init__.py index a15f83b..7b8615c 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__ = "2.0.0" +__version__ = "2.0.1"