diff --git a/octosuite/banner.py b/octosuite/banner.py index 8771078..97991fd 100644 --- a/octosuite/banner.py +++ b/octosuite/banner.py @@ -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(): diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index 9e50409..d40a421 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -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 diff --git a/setup.py b/setup.py index 2327aeb..ff988df 100644 --- a/setup.py +++ b/setup.py @@ -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"],