Skip to content

Commit

Permalink
Included legacy functions in __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c committed Nov 1, 2022
1 parent 477e18c commit c5c6241
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
copyright = "2022, trag1c"
author = "trag1c"

release = "2.1.0"
release = "2.1.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dahlia"
version = "2.1.0"
version = "2.1.1"
description = "A library allowing you to use Minecraft format codes in strings."
authors = ["trag1c <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/dahlia/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .dahlia import Dahlia, Depth, clean, clean_ansi
from .dahlia import Dahlia, Depth, clean, clean_ansi, dahlia, dprint

__all__ = ("clean", "clean_ansi", "Dahlia", "Depth")
__all__ = ("clean", "clean_ansi", "Dahlia", "Depth", "dahlia", "dprint")
2 changes: 1 addition & 1 deletion src/dahlia/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main() -> None:
if args.test:
d.test()
elif args.version:
print("Dahlia 2.1.0")
print("Dahlia 2.1.1")
exit()
if args.clean:
print(clean(string))
Expand Down

0 comments on commit c5c6241

Please sign in to comment.