From: Roger A. Light Date: Mon, 12 May 2014 19:57:08 +0000 (+0100) Subject: Bump version number. X-Git-Tag: v1.0~8 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=dd6617ffb48700580ac851aeaf7ed789983fae28;p=packages%2Fp%2Fpaho-mqtt.git Bump version number. --- diff --git a/setup.py b/setup.py index 62d9aa5..c0809fd 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from sys import version from distutils.core import setup setup(name='paho-mqtt', - version='0.9', + version='0.9.1', description='MQTT version 3.1/3.1.1 client class', author='Roger Light', author_email='roger@atchoo.org', diff --git a/src/paho/mqtt/client.py b/src/paho/mqtt/client.py index 49fc950..0e421d5 100755 --- a/src/paho/mqtt/client.py +++ b/src/paho/mqtt/client.py @@ -47,7 +47,7 @@ else: VERSION_MAJOR=0 VERSION_MINOR=9 -VERSION_REVISION=0 +VERSION_REVISION=1 VERSION_NUMBER=(VERSION_MAJOR*1000000+VERSION_MINOR*1000+VERSION_REVISION) MQTTv31 = 3