diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d04ec37..03f31e2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/pyproject.toml b/pyproject.toml index f5c5461..22de029 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shot" -version = "0.1.1" +version = "0.1.2" description = "A CLI for managing screenshots on OSX" authors = ["Conor Sheehan "] license = "MIT" diff --git a/shot.py b/shot.py index e64e142..8a0d33c 100644 --- a/shot.py +++ b/shot.py @@ -10,7 +10,7 @@ import termcolor commands = {"cp": "Copied", "mv": "Moved"} -__version__ = "0.1.1" +__version__ = "0.1.2" def _get_shell_output(args: List[str], encoding: str) -> str: diff --git a/tests/test_shot.py b/tests/test_shot.py index 3a90009..cec4210 100644 --- a/tests/test_shot.py +++ b/tests/test_shot.py @@ -25,7 +25,7 @@ def test_version(self): """ should return the version """ - assert shot(version=True) == "0.1.1" + assert shot(version=True) == "0.1.2" @patch("glob.glob") @patch("shutil.copy")