From 796e8e943c9ef4ed29a1649ec3f82d6b6714624a Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:20:26 +0200 Subject: [PATCH 1/4] Update octosuite.py --- octosuite/octosuite.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index e312be4..68de3f0 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -80,7 +80,8 @@ def check_updates(): 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") + 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(release_notes) def list_dir_and_files(): From 033e758e9e0debf4f917ddee9d48ef3969dcbb9b Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:27:56 +0200 Subject: [PATCH 2/4] Update octosuite.py --- octosuite/octosuite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index 68de3f0..9c55ad0 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -78,10 +78,10 @@ def check_updates(): if response['tag_name'] == version_tag: pass else: - markdown_text = response['body'] - release_notes = Markdown(markdown_text) + 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(release_notes) + xprint(markdown_release_notes) def list_dir_and_files(): From 386e77f375e2924ed376ee7cc24aef08c263eb3f Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:28:32 +0200 Subject: [PATCH 3/4] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"], From 73bdc542fa83c0cbef5824ffd00bb2dcf376093a Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:29:05 +0200 Subject: [PATCH 4/4] Update banner.py --- octosuite/banner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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():