8000 Updated version to 1.0.1 and created changelog · brumar/wc-api-python@ed4e6e9 · GitHub
[go: up one dir, main page]

Skip to content

Commit ed4e6e9

Browse files
Updated version to 1.0.1 and created changelog
1 parent b52c791 commit ed4e6e9

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

README.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ A Python wrapper for the WooCommerce REST API. Easily interact with the WooComme
66
.. image:: https://secure.travis-ci.org/woothemes/wc-api-python.svg
77
:target: http://travis-ci.org/woothemes/wc-api-python
88

9+
.. image:: https://img.shields.io/pypi/v/woocommerce.svg
10+
:target: https://pypi.python.org/pypi/WooCommerce
11+
912

1013
Installation
1114
------------
@@ -103,3 +106,17 @@ Example of returned data:
103106
u'{"products":[{"title":"Flying Ninja","id":70,...' // Json text
104107
>>> wcapi.json()
105108
{u'products': [{u'sold_individually': False,... // Dictionary data
109+
110+
111+
Changelog
112+
---------
113+
114+
1.0.1 - 2015/07/13
115+
~~~~~~~~~~~~~~~~~~
116+
117+
- Fixed support for Python 2.6
118+
119+
1.0.1 - 2015/07/12
120+
~~~~~~~~~~~~~~~~~~
121+
122+
- Initial version

woocommerce/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
__title__ = "woocommerce"
13-
__version__ = "1.0.0"
13+
__version__ = "1.0.1"
1414
__author__ = "Claudio Sanches @ WooThemes"
1515
__license__ = "MIT"
1616

woocommerce/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
__title__ = "woocommerce-api"
8-
__version__ = "1.0.0"
8+
__version__ = "1.0.1"
99
__author__ = "Claudio Sanches @ WooThemes"
1010
__license__ = "MIT"
1111

woocommerce/oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
__title__ = "woocommerce-oauth"
8-
__version__ = "1.0.0"
8+
__version__ = "1.0.1"
99
__author__ = "Claudio Sanches @ WooThemes"
1010
__license__ = "MIT"
1111

0 commit comments

Comments
 (0)
0