diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fea1795..3fd6bd9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 2.0.0 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/pyproject.toml b/pyproject.toml index fe605a1..4416f37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shot" -version = "1.0.0" +version = "2.0.0" description = "A CLI for managing screenshots on OSX" authors = ["Conor Sheehan "] license = "MIT" diff --git a/shot.py b/shot.py index 3a44310..98ec08b 100644 --- a/shot.py +++ b/shot.py @@ -11,7 +11,7 @@ from rich.prompt import Prompt commands = {"cp": "Copied", "mv": "Moved"} -__version__ = "1.0.0" +__version__ = "2.0.0" class Shot: diff --git a/tests/unit/test_shot.py b/tests/unit/test_shot.py index 9a13f12..98e39fd 100644 --- a/tests/unit/test_shot.py +++ b/tests/unit/test_shot.py @@ -31,7 +31,7 @@ def test_version(self): """ should return the version """ - assert Shot(version=True)() == "1.0.0" + assert Shot(version=True)() == "2.0.0" @patch("glob.glob") @patch("shutil.copy")