From 256c10106216781b98005c84ae98fbe9793e4e18 Mon Sep 17 00:00:00 2001 From: John C Miller Date: Sun, 13 Aug 2023 09:17:35 -0400 Subject: [PATCH] Updated Readme and version bump to propagate that to pypi --- README.md | 6 +++++- docs/README.md | 4 ++++ setup.py | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59a9eee..6c2c855 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ PSBS combines multiple files into one puzzlescript source file and can export it For more information view the [official PSBS Documentation](https://jcmiller11.github.io/PSBS/) -![Screenshot of PSBS in action](/docs/media/screenshot.png?raw=true) +![Screenshot of PSBS in action](https://github.com/jcmiller11/psbs/blob/master/docs/media/screenshot.png?raw=true) ## Features @@ -30,6 +30,10 @@ If you already have Python 3.8 or greater and pip installed simply run the follo If you don't have Python and pip installed: [Download Python](https://www.python.org/downloads/) +If you already have an older version of PSBS installed you can upgrade to the latest version with + +`pip install psbs --upgrade` + ## Contributing While I'd be grateful to receive pull requests, at this moment in time prior to doing an official 1.0.0 release what I would really like help with is testing! Please use PSBS to its fullest and if you encounter any odd behaviors don't hesitate to raise an Issue! diff --git a/docs/README.md b/docs/README.md index eeeeaaa..1accf76 100644 --- a/docs/README.md +++ b/docs/README.md @@ -23,6 +23,10 @@ If you already have Python 3.8 or greater and pip installed simply run the follo If you don't have Python and pip installed: [Download Python](https://www.python.org/downloads/) +If you already have an older version of PSBS installed you can upgrade to the latest version with + +`pip install psbs --upgrade` + ## Connecting to GitHub PSBS will build your projects into PuzzleScript games without interacting with GitHub at all, however uploading and running your projects from gists requires an authorization token. You can check if PSBS currently has an auth token by entering `psbs token`. diff --git a/setup.py b/setup.py index ccdfa77..cb0139b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='psbs', - version='0.3.2', + version='0.3.3', python_requires='>=3.8', description='PuzzleScript Build System', long_description=long_description, @@ -15,7 +15,7 @@ author='J.C. Miller', author_email='johncoreymiller@gmail.com', url='https://github.com/jcmiller11/PSBS', - download_url = 'https://github.com/jcmiller11/PSBS/archive/refs/tags/0.3.2.tar.gz', + download_url = 'https://github.com/jcmiller11/PSBS/archive/refs/tags/0.3.3.tar.gz', license='MIT', packages=find_packages(), package_data={'': ['example.txt']},