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"