Skip to content

Commit

Permalink
documentation change, version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Lehmann committed Jun 23, 2017
1 parent 2d01a10 commit 89a4d33
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Version 0.0.7
-------------
* 100% test coverage
* bugfix: make flask application object at initialization optional again
* proper disconnecting on mqtt._disconnect

Version 0.0.6
-------------
* Flask-MQTT now supports Python 2.7
Expand Down
1 change: 1 addition & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ or monitor and control these devices from one or multiple clients.

configuration
usage
testing
changelog
api/index

Expand Down
6 changes: 6 additions & 0 deletions doc/testing.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Testing
=======

For testing use the command ``setup.py test``. You will need a broker like
mosquitto running on your localhost, port 1883 to run the integration tests.

2 changes: 1 addition & 1 deletion flask_mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
MQTT_LOG_WARNING


__version__ = '0.0.6'
__version__ = '0.0.7'


class Mqtt():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
else:
setup(
name='Flask-MQTT',
version='0.0.6',
version='0.0.7',
url='https://github.com/MrLeeh/Flask-MQTT',
license='MIT',
author='Stefan Lehmann',
Expand Down

0 comments on commit 89a4d33

Please sign in to comment.