Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit 5d36339

Browse files
committed
fix: Correct upgrade command for pip
Wrong upgrade command was suggested for pip.
1 parent 62b87d1 commit 5d36339

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gitcommit/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"

gitcommit/updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def check_for_update():
4747
("", " → "),
4848
("class:green", latest_tag_version),
4949
("", "\nTry running: "),
50-
("class:command", "pip upgrade conventional-commit"),
50+
("class:command", "pip install --upgrade conventional-commit"),
5151
]
5252
)
5353
print_formatted_text(text, style=style)

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 = "conventional-commit"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "a tool for writing conventional commits, conveniently"
55
authors = ["nebbles"]
66
readme = "README.md"

0 commit comments

Comments
 (0)