From 892f483c041e89b71bb7b6689426cc31d3655c2a Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Thu, 31 Mar 2022 08:21:16 +0530 Subject: [PATCH] release: v0.3.0 --- pyproject.toml | 2 +- remove_print_statements.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)