diff --git a/octosuite/banner.py b/octosuite/banner.py index 97991fd..da8bfb8 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.2.0" +version_tag = "3.1.1" def banner(): diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index e312be4..9c55ad0 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -78,9 +78,10 @@ def check_updates(): if response['tag_name'] == version_tag: pass else: - markdown_text = response['body'] - release_notes = Markdown(markdown_text) - xprint(f"[{green}UPDATE{reset}] A new release of Octosuite is available ({response['tag_name']}).\n\n{release_notes}\n\nRun 'pip install --upgrade octosuite' to get the updates.\n") + raw_release_notes = response['body'] + markdown_release_notes = Markdown(raw_release_notes) + 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(markdown_release_notes) def list_dir_and_files(): diff --git a/setup.py b/setup.py index ff988df..6929308 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.2.0", + version="3.1.1", author="Richard Mwewa", author_email="rly0nheart@duck.com", packages=["octosuite"],