BigW Consortium Gitlab

Commit 1b97336b by Dan McKinley

version bump, updating changelog

parent f1ba36ee
...@@ -112,6 +112,9 @@ api = Etsy(method_cache=None) ...@@ -112,6 +112,9 @@ api = Etsy(method_cache=None)
## Version History ## Version History
### Version 0.3.1
* Allowing Python Longs to be passed for parameters declared as "integers" by the API.
### Version 0.3 ### Version 0.3
* Support for Etsy API v2 thanks to [Marc Abramowitz](http://marc-abramowitz.com). * Support for Etsy API v2 thanks to [Marc Abramowitz](http://marc-abramowitz.com).
......
...@@ -2,7 +2,7 @@ from _v2 import EtsyV2 as Etsy ...@@ -2,7 +2,7 @@ from _v2 import EtsyV2 as Etsy
from etsy_env import EtsyEnvSandbox, EtsyEnvProduction from etsy_env import EtsyEnvSandbox, EtsyEnvProduction
__version__ = '0.3' __version__ = '0.3.1'
__author__ = 'Dan McKinley' __author__ = 'Dan McKinley'
__copyright__ = 'Copyright 2010, Etsy Inc.' __copyright__ = 'Copyright 2010, Etsy Inc.'
__license__ = 'GPL v3' __license__ = 'GPL v3'
......
Note to self. -DM
1. Increment version in setup.py.
2. Increment version in etsy/__init__.py
3. Update changelog in README.md.
4. ./setup.py test
5. ./setup.py build bdist_egg
6. ./setup.py register
...@@ -7,7 +7,7 @@ long_description = open(os.path.join(this_dir, 'README.md'), 'r').read() ...@@ -7,7 +7,7 @@ long_description = open(os.path.join(this_dir, 'README.md'), 'r').read()
setup( setup(
name = 'etsy', name = 'etsy',
version = '0.3', version = '0.3.1',
author = 'Dan McKinley', author = 'Dan McKinley',
author_email = 'dan@etsy.com', author_email = 'dan@etsy.com',
description = 'Python access to the Etsy API', description = 'Python access to the Etsy API',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment