From 613b811c4cc595f48af2978326636af3d59d7380 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Tue, 24 Jun 2014 23:18:58 +0100 Subject: [PATCH] Bump version numbers. Change-Id: I661f3ef2d54c6f5a25111cb0de4d8a4c128a4c80 --- README.rst | 2 +- src/paho/mqtt/__init__.py | 2 +- src/paho/mqtt/client.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index e93611d..890a613 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ It supports Python 2.7 or 3.x, with limited support for Python 2.6. The MQTT protocol is a machine-to-machine (M2M)/"Internet of Things" connectivity protocol. Designed as an extremely lightweight publish/subscribe messaging transport, it is useful for connections with remote locations where a small code footprint is required and/or network bandwidth is at a premium. -Paho is an `Eclipse Foundation `_ project currently in the `incubation phase `_. +Paho is an `Eclipse Foundation `_ project. Contents diff --git a/src/paho/mqtt/__init__.py b/src/paho/mqtt/__init__.py index d69d16e..4802e90 100644 --- a/src/paho/mqtt/__init__.py +++ b/src/paho/mqtt/__init__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "1.0" diff --git a/src/paho/mqtt/client.py b/src/paho/mqtt/client.py index ccae35e..ad9d640 100755 --- a/src/paho/mqtt/client.py +++ b/src/paho/mqtt/client.py @@ -45,9 +45,9 @@ if platform.system() == 'Windows': else: EAGAIN = errno.EAGAIN -VERSION_MAJOR=0 -VERSION_MINOR=9 -VERSION_REVISION=100 +VERSION_MAJOR=1 +VERSION_MINOR=0 +VERSION_REVISION=0 VERSION_NUMBER=(VERSION_MAJOR*1000000+VERSION_MINOR*1000+VERSION_REVISION) MQTTv31 = 3 -- 2.39.5