Skip to content

Commit

Permalink
version updated
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyZhao committed Jan 5, 2016
1 parent 883c949 commit 4ddd83a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
微信公众平台 Python 开发包
===========================

当前最新版本:v0.5.8
当前最新版本:v0.5.9

非官方微信公众平台 Python 开发包,包括官方接口和非官方接口。

Expand Down Expand Up @@ -58,6 +58,12 @@

ChangeLog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
v0.5.9
^^^^^^^^^^^^^^^^^^^^^^^^^^^

* 修复了 py3 中 只有 str 没有 unicode 的情况(感谢 `hbrls <https://github.com/hbrls>`_)
* 避免 generate_jsapi_signature 刷新 access_token(感谢 `paicha <https://github.com/paicha>`_)
* 增加客服消息转发功能(感谢 `torpedoallen <https://github.com/torpedoallen>`_)

v0.5.8
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.8'
version = '0.5.9'
# The full version, including alpha/beta/rc tags.
release = '0.5.8'
release = '0.5.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='wechat-sdk',
version='0.5.8',
version='0.5.9',
keywords=('wechat', 'sdk', 'wechat sdk'),
description=u'微信公众平台Python开发包',
long_description=open("README.rst").read(),
Expand All @@ -17,6 +17,5 @@

packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=map(lambda x: x.replace('==', '>='), open("requirements.txt").readlines()),
)

0 comments on commit 4ddd83a

Please sign in to comment.