From 0e738471cd35c5265cd4585692af92427ec03ddc Mon Sep 17 00:00:00 2001 From: Conor Sheehan Date: Wed, 13 Jan 2021 21:05:39 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.2=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- shot.py | 2 +- tests/unit/test_shot.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index debb021..48b57ce 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 1.0.0 [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/pyproject.toml b/pyproject.toml index 1824e2b..a73f3e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shot" -version = "0.1.2" +version = "1.0.0" description = "A CLI for managing screenshots on OSX" authors = ["Conor Sheehan "] license = "MIT" diff --git a/shot.py b/shot.py index fd23a30..ddca953 100644 --- a/shot.py +++ b/shot.py @@ -10,7 +10,7 @@ import termcolor commands = {"cp": "Copied", "mv": "Moved"} -__version__ = "0.1.2" +__version__ = "1.0.0" def _get_shell_output(args: List[str], encoding: str) -> str: diff --git a/tests/unit/test_shot.py b/tests/unit/test_shot.py index 9d885d1..4f75368 100644 --- a/tests/unit/test_shot.py +++ b/tests/unit/test_shot.py @@ -29,7 +29,7 @@ def test_version(self): """ should return the version """ - assert shot(version=True) == "0.1.2" + assert shot(version=True) == "1.0.0" @patch("glob.glob") @patch("shutil.copy")