diff options
author | mob41 <puihuenlaw@gmail.com> | 2017-06-14T02·30+0800 |
---|---|---|
committer | Matthew Garrett <mjg59-github@srcf.ucam.org> | 2017-06-14T02·30-0700 |
commit | 2e2c8ef1a15175cf311f757a52e7c561f834f68b (patch) | |
tree | 8994ac9ad7ba39509a53994a364b927d38067e1a /setup.py | |
parent | f7e30344c5748e37924c8a4f28522c2bc99a52ee (diff) |
[Critical] Fixes invalid byte string (b) for padding (#97, #107) (#108)
* Fixes invalid byte string (b) for padding (#97, #107) * Change version to 0.5
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py index ed627fe13b73..1971c92b2f0d 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ try: except ImportError as e: dynamic_requires = ['pycrypto==2.6.1'] -version = 0.3 +version = 0.5 setup( name='broadlink', - version=0.4, + version=0.5, author='Matthew Garrett', author_email='mjg59@srcf.ucam.org', url='http://github.com/mjg59/python-broadlink', |