Skip to content

Commit a977194

Browse files
committed
Bump version: 0.1.1 → 0.1.2
1 parent 7d303b8 commit a977194

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.1
2+
current_version = 0.1.2
33

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

pyproject.toml

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

shot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import termcolor
1111

1212
commands = {"cp": "Copied", "mv": "Moved"}
13-
__version__ = "0.1.1"
13+
__version__ = "0.1.2"
1414

1515

1616
def _get_shell_output(args: List[str], encoding: str) -> str:

tests/test_shot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_version(self):
2525
"""
2626
should return the version
2727
"""
28-
assert shot(version=True) == "0.1.1"
28+
assert shot(version=True) == "0.1.2"
2929

3030
@patch("glob.glob")
3131
@patch("shutil.copy")

0 commit comments

Comments
 (0)