Skip to content

Commit

Permalink
Bump version: 1.0.0 → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorSheehan1 committed Mar 22, 2021
1 parent 7ead41b commit b521880
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 = 1.0.0
current_version = 2.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 = "1.0.0"
version = "2.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 @@ -11,7 +11,7 @@
from rich.prompt import Prompt

commands = {"cp": "Copied", "mv": "Moved"}
__version__ = "1.0.0"
__version__ = "2.0.0"


class Shot:
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 @@ -31,7 +31,7 @@ def test_version(self):
"""
should return the version
"""
assert Shot(version=True)() == "1.0.0"
assert Shot(version=True)() == "2.0.0"

@patch("glob.glob")
@patch("shutil.copy")
Expand Down

0 comments on commit b521880

Please sign in to comment.