Skip to content

Commit cbc9c2e

Browse files
committed
Bump version: 2.0.1 → 2.0.2
1 parent 0e1dedf commit cbc9c2e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.1
2+
current_version = 2.0.2
33

44
[bumpversion:file:pyproject.toml]
55
search = version = "{current_version}"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "shot"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "A CLI for managing screenshots on OSX"
55
authors = ["Conor Sheehan <conor.sheehan.dev@gmail.com>"]
66
license = "MIT"

shot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from rich.prompt import Prompt
1212

1313
commands = {"cp": "Copied", "mv": "Moved"}
14-
__version__ = "2.0.1"
14+
__version__ = "2.0.2"
1515

1616

1717
class Shot:

tests/unit/test_shot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_version(self):
3131
"""
3232
should return the version
3333
"""
34-
assert Shot(version=True)() == "2.0.1"
34+
assert Shot(version=True)() == "2.0.2"
3535

3636
@patch("glob.glob")
3737
@patch("shutil.copy")

0 commit comments

Comments
 (0)