This commit is contained in:
Richard Mwewa
2023-02-03 17:54:37 +02:00
parent 8364053f97
commit 619ef8cf9f
3 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ from octosuite.config import red, white, green, reset, Tree
# banner.py
# This file holds the program's banner and version tag
version_tag = "3.1.0"
version_tag = "3.2.0"
def banner():

View File

@@ -78,7 +78,7 @@ def check_updates():
if response['tag_name'] == version_tag:
pass
else:
xprint(f"[{green}UPDATE{reset}] A new release of Octosuite is available ({response['tag_name']}). Run 'pip install --upgrade octosuite' to get the updates.\n")
xprint(f"[{green}UPDATE{reset}] A new release of Octosuite is available ({response['tag_name']}).\n\n{response['body']}\n\nRun 'pip install --upgrade octosuite' to get the updates.\n")
def list_dir_and_files():
@@ -201,7 +201,7 @@ An advanced and lightning fast framework for gathering open-source intelligence
Whats new in v{version_tag}?
[{green}IMPROVED{reset}] Added a subcommand to the 'user' commands, that will be used to get a user's email 'user:email' (CLI only)
[{green}IMPROVED{reset}] Minor improvements
Read the wiki: https://github.com/bellingcat/octosuite/wiki
GitHub REST API documentation: https://docs.github.com/rest

View File

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as file:
setuptools.setup(
name="octosuite",
version="3.1.0",
version="3.2.0",
author="Richard Mwewa",
author_email="rly0nheart@duck.com",
packages=["octosuite"],