Skip to content

Commit

Permalink
Merge pull request #585 from Hari-Nagarajan/development
Browse files Browse the repository at this point in the history
0.6.2
  • Loading branch information
DakkJaniels committed Mar 19, 2021
2 parents bb7713f + 583167b commit a43739f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from notifications.notifications import NotificationHandler, TIME_FORMAT
from stores.amazon import Amazon
from utils.logger import log
from utils.version import is_latest, version
from utils.version import is_latest, version, get_latest_version

LICENSE_PATH = os.path.join(
"cli",
Expand Down Expand Up @@ -422,7 +422,7 @@ def show_traceroutes(domain):
log.warning(f"FairGame PRE-RELEASE v{version}")
else:
log.warning(
f"You are running FairGame v{version.release}, but the most recent version is v{version.get_latest_version()}. "
f"You are running FairGame v{version}, but the most recent version is v{get_latest_version()}. "
f"Consider upgrading "
)

Expand Down
2 changes: 1 addition & 1 deletion utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# See https://www.python.org/dev/peps/pep-0440/ for specification
# See https://www.python.org/dev/peps/pep-0440/#examples-of-compliant-version-schemes for examples

__VERSION = "0.6.1"
__VERSION = "0.6.2"
version = Version(__VERSION)


Expand Down

0 comments on commit a43739f

Please sign in to comment.