diff --git a/README.md b/README.md index 0ee2a41..b4f4568 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,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. diff --git a/setup.py b/setup.py index c668e62..3a3ad8e 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ with open('README.md') as f: setup( name='scrython', - packages=['scrython', 'scrython.cards', 'scrython.rulings'], - version='1.0.0', + packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'], + version='1.1.0', description='A wrapper for using the Scryfall API.', long_description=readme, url='https://github.com/NandaScott/Scrython',