diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3fd6bd9..da4f222 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/pyproject.toml b/pyproject.toml index c9b3711..41f28f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shot" -version = "2.0.0" +version = "2.0.1" description = "A CLI for managing screenshots on OSX" authors = ["Conor Sheehan "] license = "MIT" diff --git a/shot.py b/shot.py index 98ec08b..0996b50 100644 --- a/shot.py +++ b/shot.py @@ -11,7 +11,7 @@ from rich.prompt import Prompt commands = {"cp": "Copied", "mv": "Moved"} -__version__ = "2.0.0" +__version__ = "2.0.1" class Shot: diff --git a/tests/unit/test_shot.py b/tests/unit/test_shot.py index 98e39fd..6047ec1 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)() == "2.0.0" + assert Shot(version=True)() == "2.0.1" @patch("glob.glob") @patch("shutil.copy")