diff --git a/pyproject.toml b/pyproject.toml index 1392434..641e876 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "remove-print-statements" -version = "0.2.1" +version = "0.3.0" description = "A tool (and pre-commit hook) to remove print statements from your Python project." authors = ["Dhruv Manilawala "] license = "MIT" diff --git a/remove_print_statements.py b/remove_print_statements.py index 11b4020..2fbc298 100644 --- a/remove_print_statements.py +++ b/remove_print_statements.py @@ -14,7 +14,7 @@ ) from libcst.metadata import PositionProvider -__version__ = "0.2.1" +__version__ = "0.3.0" @dataclass(frozen=False)