Skip to content

Commit

Permalink
🔖 Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Feb 15, 2024
1 parent da83fc9 commit dc6c283
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unmarkd"
description = "A markdown reverser"
authors = ["Bryan Hu <[email protected]>"]
version = "1.1.1"
version = "1.1.2"

readme = "README.md"
license = "GPL-3.0-or-later"
Expand Down
3 changes: 2 additions & 1 deletion unmarkd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A markdown reverser."""

from typing import TYPE_CHECKING, Union

if TYPE_CHECKING:
Expand All @@ -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"

0 comments on commit dc6c283

Please sign in to comment.