Skip to content

Commit 42f0b13

Browse files
committed
Bump version number and update changelog.
1 parent 2e69b8e commit 42f0b13

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

ChangeLog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
v1.x.x - 20xx-xx-xx
1+
v1.5.1 - 2020x-09-22
22
===================
33

44
- Exceptions that occur in callbacks are no longer suppressed by default. They
55
can optionally be suppressed by setting `client.suppress_exceptions = True`.
66
Closes #365.
77
- Fix PUBREL remaining length of > 2 not being accepted for MQTT v5 message
88
flows. Closes #481.
9+
- Fix MQTT v5 properties not being sent on retried or queued messages.
10+
- Fix errors related to detection of MQTT v5 first connections.
11+
- Fix for changes related to Python 3.9.
12+
913

1014
v1.5.0 - 2019-10-30
1115
===================

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Eclipse Paho™ MQTT Python Client
22
================================
33

4-
This document describes the source code for the `Eclipse Paho <http://eclipse.org/paho/>`_ MQTT Python client library, which implements versions 3.1 and 3.1.1 of the MQTT protocol.
4+
This document describes the source code for the `Eclipse Paho <http://eclipse.org/paho/>`_ MQTT Python client library, which implements versions 5.0, 3.1.1, and 3.1 of the MQTT protocol.
55

66
This code provides a client class which enable applications to connect to an `MQTT <http://mqtt.org/>`_ broker to publish messages, and to subscribe to topics and receive published messages. It also provides some helper functions to make publishing one off messages to an MQTT server very straightforward.
77

8-
It supports Python 2.7.9+ or 3.4+, with limited support for Python 2.7 before 2.7.9.
8+
It supports Python 2.7.9+ or 3.5+.
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
setup(
2323
name='paho-mqtt',
2424
version=__version__,
25-
description='MQTT version 3.1.1 client class',
25+
description='MQTT version 5.0/3.1.1 client class',
2626
long_description=readme,
2727
author='Roger Light',
2828
author_email='roger@atchoo.org',

src/paho/mqtt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.5.0.dev0"
1+
__version__ = "1.5.1"
22

33

44
class MQTTException(Exception):

0 commit comments

Comments
 (0)