8000 Version 1.2.1 · yezzatech/wc-api-python@bffe8d7 · GitHub
[go: up one dir, main page]

Skip to content

Commit bffe8d7

Browse files
Version 1.2.1
1 parent 01b5000 commit bffe8d7

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@ Example of returned data:
137137
Changelog
138138
---------
139139
140+
1.2.1 - 2016/12/14
141+
~~~~~~~~~~~~~~~~~~
142+
143+
- Fixed WordPress 4.7 compatibility.
144+
140145
1.2.0 - 2016/06/22
141146
~~~~~~~~~~~~~~~~~~
142147

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
version=VERSION,
2727
description="A Python wrapper for the WooCommerce REST API",
2828
long_description=README,
29-
author="Claudio Sanches @ WooThemes",
29+
author="Claudio Sanches @ Automattic",
3030
url="https://github.com/woocommerce/wc-api-python",
3131
license="MIT License",
3232
packages=[
@@ -38,7 +38,7 @@
3838
"requests",
3939
"ordereddict"
4040
],
41-
classifiers=(
41+
classifiers=[
4242
"Development Status :: 5 - Production/Stable",
4343
"Intended Audience :: Developers",
4444
"Natural Language :: English",
@@ -50,5 +50,5 @@
5050
"Programming Language :: Python :: 3.3",
5151
"Programming Language :: Python :: 3.4",
5252
"Topic :: Software Development :: Libraries :: Python Modules"
53-
),
53+
],
5454
)

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

0 commit comments

Comments
 (0)
0