From 02a384a4372ae87c6fd683426bd3682d704ad418 Mon Sep 17 00:00:00 2001 From: tsutsu3 Date: Sat, 7 May 2022 15:56:21 +0900 Subject: [PATCH] Release v2.0.0 (#35) --- CHANGELOG.md | 6 +++--- linkify_it/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cb51fd..ba25abc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Change Log -## vx.x.x (2022-xx-xx) / Draft +## v2.0.0 (2022-05-07) - Add `matchAtStart` method to match full URLs at the start of the string. +- Fixed paired symbols (`()`, `{}`, `""`, etc.) after punctuation. +- `---` option now affects parsing of emails (e.g. `user@example.com---`) ## v1.0.3 (2021-12-18) @@ -14,8 +16,6 @@ ## v1.0.1 (2020-12-18) -### Added - - Add manifest - Add codecov.yml diff --git a/linkify_it/__init__.py b/linkify_it/__init__.py index 5d3653b..a15f83b 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.3" +__version__ = "2.0.0"