From 78630d163f09d9e534db06a1d7ce72e8d55cccb6 Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Mon, 19 Feb 2018 17:30:40 -0500 Subject: [PATCH 1/3] Updated Readme. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b46d566..20a838c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ Since Scryfall's API is constantly changing, this library will also be changing. Versions will be broken down as such: 0: Overall library version + 0.x: Changes that will break previous functionality + 0.x.x: Changes that Scryfall has made to break functionality. It's important to keep up to date with library changes, since it relies on how Scryfall has updated it's own API. If they change something, my library will potentially break or be outdated until a fix is patched. From cc93ff17de336555aadb0f41ac44196631b20e05 Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Tue, 20 Feb 2018 10:42:25 -0500 Subject: [PATCH 2/3] Added the rest of the modules I should have added in the first place. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c668e62..9651e34 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.md') as f: setup( name='scrython', - packages=['scrython', 'scrython.cards', 'scrython.rulings'], + packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'], version='1.0.0', description='A wrapper for using the Scryfall API.', long_description=readme, From 1702bb571c82f69559604a53470406f05fe29efe Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Tue, 20 Feb 2018 10:43:35 -0500 Subject: [PATCH 3/3] Updated package version. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9651e34..3a3ad8e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open('README.md') as f: setup( name='scrython', packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'], - version='1.0.0', + version='1.1.0', description='A wrapper for using the Scryfall API.', long_description=readme, url='https://github.com/NandaScott/Scrython',