10000 Version 1.2.0 · brumar/wc-api-python@bf75d38 · GitHub
[go: up one dir, main page]

Skip to content

Commit bf75d38

Browse files
Version 1.2.0
1 parent 83921db commit bf75d38

File tree

4 files changed

+27
-20
lines changed

4 files changed

+27
-20
lines changed

README.rst

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,25 @@ Setup for the new WP REST API integration (WooCommerce 2.6 or later):
5656
Options
5757
~~~~~~~
5858

59-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
60-
| Option | Type | Required | Description |
61-
+====================+=============+==========+=======================================================================================================+
62-
| ``url`` | ``string`` | yes | Your Store URL, example: http://woo.dev/ |
63-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
64-
| ``consumerKey`` | ``string`` | yes | Your API consumer key |
65-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
66-
| ``consumerSecret`` | ``string`` | yes | Your API consumer secret |
67-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
68-
| ``wp_api`` | ``bool`` | no | Allow requests to the WP REST API (WooCommerce 2.6 or later) |
69-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
70-
| ``version`` | ``string`` | no | API version, default is ``v3`` |
71-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
72-
| ``timeout`` | ``integer`` | no | Connection timeout, default is ``5`` |
73-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
74-
| ``verify_ssl`` | ``bool`` | no | Verify SSL when connect, use this option as ``False`` when need to test with self-signed certificates |
75-
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
59+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
60+
| Option | Type | Required | Description |
61+
+=======================+=============+==========+=======================================================================================================+
62+
| ``url`` | ``string`` | yes | Your Store URL, example: http://woo.dev/ |
63+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
64+
| ``consumerKey`` | ``string`` | yes | Your API consumer key |
65+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
66+
| ``consumerSecret`` | ``string`` | yes | Your API consumer secret |
67+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
68+
| ``wp_api`` | ``bool`` | no | Allow requests to the WP REST API (WooCommerce 2.6 or later) |
69+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
70+
| ``version`` | ``string`` | no | API version, default is ``v3`` |
71+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
72+
| ``timeout`` | ``integer`` | no | Connection timeout, default is ``5`` |
73+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
74+
| ``verify_ssl`` | ``bool`` | no | Verify SSL when connect, use this option as ``False`` when need to test with self-signed certificates |
75+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
76+
| ``query_string_auth`` | ``bool`` | no | Force Basic Authentication as query string when ``True`` and using under HTTPS, default is ``False`` |
77+
+-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
7678

7779
Methods
7880
-------
@@ -135,6 +137,11 @@ Example of returned data:
135137
Changelog
136138
---------
137139
140+
1.2.0 - 2016/06/22
141+
~~~~~~~~~~~~~~~~~~
142+
143+
- Added option ``query_string_auth`` to allow Basic Auth as query strings.
144+
138145
1.1.1 - 2016/06/03
139146
~~~~~~~~~~~~~~~~~~
140147

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.1.1"
13+
__version__ = "1.2.0"
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.1.1"
8+
__version__ = "1.2.0"
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.1.1"
8+
__version__ = "1.2.0"
99
__author__ = "Claudio Sanches @ WooThemes"
1010
__license__ = "MIT"
1111

0 commit comments

Comments
 (0)
0