From 2bdc4bceffddf01d7963b06449dd08e2d6ac7b76 Mon Sep 17 00:00:00 2001 From: test-user Date: Wed, 25 Mar 2026 17:27:39 -0700 Subject: [PATCH] Bump version to 0.3.0 --- pyproject.toml | 2 +- src/remove_ai_watermarks/__init__.py | 2 +- tests/test_cli.py | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2a7cbe..465ef4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remove-ai-watermarks" -version = "0.2.2" +version = "0.3.0" description = "Remove visible and invisible AI watermarks from images (Gemini / Nano Banana, ChatGPT, Stable Diffusion)" readme = "README.md" requires-python = ">=3.10" diff --git a/src/remove_ai_watermarks/__init__.py b/src/remove_ai_watermarks/__init__.py index 7d5b221..168093b 100644 --- a/src/remove_ai_watermarks/__init__.py +++ b/src/remove_ai_watermarks/__init__.py @@ -1,3 +1,3 @@ """Remove-AI-Watermarks: Unified tool for removing visible and invisible AI watermarks.""" -__version__ = "0.2.2" +__version__ = "0.3.0" diff --git a/tests/test_cli.py b/tests/test_cli.py index 542ca29..f971961 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -79,7 +79,7 @@ class TestMainGroup: def test_version(self, runner): result = runner.invoke(main, ["--version"]) assert result.exit_code == 0 - assert "0.2.2" in result.output + assert "0.3.0" in result.output def test_no_command_shows_banner(self, runner): result = runner.invoke(main, []) diff --git a/uv.lock b/uv.lock index 6484133..70a4caf 100644 --- a/uv.lock +++ b/uv.lock @@ -1993,7 +1993,7 @@ wheels = [ [[package]] name = "remove-ai-watermarks" -version = "0.2.2" +version = "0.3.0" source = { editable = "." } dependencies = [ { name = "accelerate" },