]> git.michaelhowe.org Git - packages/p/paho-mqtt.git/commitdiff
Bump version numbers. v1.0
authorRoger A. Light <roger@atchoo.org>
Tue, 24 Jun 2014 22:18:58 +0000 (23:18 +0100)
committerRoger A. Light <roger@atchoo.org>
Tue, 24 Jun 2014 22:18:58 +0000 (23:18 +0100)
Change-Id: I661f3ef2d54c6f5a25111cb0de4d8a4c128a4c80

README.rst
src/paho/mqtt/__init__.py
src/paho/mqtt/client.py

index e93611d575cf36b40149dab6414d8a1eca419661..890a613df9baa3ea1aff3b03730f1b8dafb000ab 100644 (file)
@@ -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 <https://www.eclipse.org/org/foundation/>`_ project currently in the `incubation phase <http://www.eclipse.org/projects/what-is-incubation.php>`_.
+Paho is an `Eclipse Foundation <https://www.eclipse.org/org/foundation/>`_ project.
 
 
 Contents
index d69d16e980b8d6f94e93d6d6fb3fc785171c2fd7..4802e90f8edc38346215a3277cf96f0fa7474c32 100644 (file)
@@ -1 +1 @@
-__version__ = "0.9.1"
+__version__ = "1.0"
index ccae35eed6466826c5f549836a5b18f70338b5b8..ad9d64032faa5d261c365359346f83b58152047e 100755 (executable)
@@ -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