From dc6c283b2b63ecf63a91d76ea84e8e6415352094 Mon Sep 17 00:00:00 2001 From: ThatXliner Date: Wed, 14 Feb 2024 23:26:45 -0800 Subject: [PATCH] :bookmark: Version bump --- pyproject.toml | 2 +- unmarkd/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 94ffe69..79a3535 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "unmarkd" description = "A markdown reverser" authors = ["Bryan Hu "] -version = "1.1.1" +version = "1.1.2" readme = "README.md" license = "GPL-3.0-or-later" diff --git a/unmarkd/__init__.py b/unmarkd/__init__.py index d0f9109..1c1370f 100644 --- a/unmarkd/__init__.py +++ b/unmarkd/__init__.py @@ -1,4 +1,5 @@ """A markdown reverser.""" + from typing import TYPE_CHECKING, Union if TYPE_CHECKING: @@ -12,4 +13,4 @@ def unmark(html: Union[str, "bs4.NavigableString", "bs4.BeautifulSoup"]) -> str: return unmarkers.BasicUnmarker().unmark(html) -__version__ = "1.1.1" +__version__ = "1.1.2"