Skip to content

Commit

Permalink
Bump version number and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Sep 22, 2020
1 parent 2e69b8e commit 42f0b13
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
v1.x.x - 20xx-xx-xx
v1.5.1 - 2020x-09-22
===================

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


v1.5.0 - 2019-10-30
===================
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Eclipse Paho™ MQTT Python Client
================================

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

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.

It supports Python 2.7.9+ or 3.4+, with limited support for Python 2.7 before 2.7.9.
It supports Python 2.7.9+ or 3.5+.

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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
setup(
name='paho-mqtt',
version=__version__,
description='MQTT version 3.1.1 client class',
description='MQTT version 5.0/3.1.1 client class',
long_description=readme,
author='Roger Light',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion src/paho/mqtt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.5.0.dev0"
__version__ = "1.5.1"


class MQTTException(Exception):
Expand Down

0 comments on commit 42f0b13

Please sign in to comment.