From cbd4c0443bd803c1e955fc94218e37923e04010f Mon Sep 17 00:00:00 2001 From: Conor Sheehan Date: Sun, 28 Mar 2021 18:24:02 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=202.0.1?= 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 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")