Skip to content

Commit

Permalink
Bump version: 0.1.2 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorSheehan1 committed Jan 13, 2021
1 parent d6db65a commit 0e73847
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 1.0.0

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion shot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_shot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 0e73847

Please sign in to comment.