diff --git a/easy_pil/_version.py b/easy_pil/_version.py index b264e6d..0329d56 100644 --- a/easy_pil/_version.py +++ b/easy_pil/_version.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = "0.3.5" +__version__ = "0.3.6" VersionInfo = namedtuple("VersionInfo", "major minor macro release") diff --git a/easy_pil/editor.py b/easy_pil/editor.py index 3e728bc..0f1beb3 100644 --- a/easy_pil/editor.py +++ b/easy_pil/editor.py @@ -460,7 +460,6 @@ def bar( bar_width = int((max_width / 100) * percentage) - print(bar_width) if radius <= 0: main_draw.rectangle( (0, 0) + (bar_width, height), diff --git a/pyproject.toml b/pyproject.toml index d299261..30b7864 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "easy-pil" -version = "0.3.5" +version = "0.3.6" description = "A Python library built on top of PIL to easily edit/modify images" keywords = ["easy-pil", "easy pillow", "Pillow", "image editing"] authors = ["Md Shahriyar Alam "]