Skip to content

Commit 613b811

Browse files
committed
Bump version numbers.
Change-Id: I661f3ef2d54c6f5a25111cb0de4d8a4c128a4c80
1 parent 2aa102a commit 613b811

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It supports Python 2.7 or 3.x, with limited support for Python 2.6.
99

1010
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.
1111

12-
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>`_.
12+
Paho is an `Eclipse Foundation <https://www.eclipse.org/org/foundation/>`_ project.
1313

1414

1515
Contents

src/paho/mqtt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.1"
1+
__version__ = "1.0"

src/paho/mqtt/client.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
else:
4646
EAGAIN = errno.EAGAIN
4747

48-
VERSION_MAJOR=0
49-
VERSION_MINOR=9
50-
VERSION_REVISION=100
48+
VERSION_MAJOR=1
49+
VERSION_MINOR=0
50+
VERSION_REVISION=0
5151
VERSION_NUMBER=(VERSION_MAJOR*1000000+VERSION_MINOR*1000+VERSION_REVISION)
5252

5353
MQTTv31 = 3

0 commit comments

Comments
 (0)