5 Commits
0.3.0 ... 0.3.1

Author SHA1 Message Date
e44ca5f5bd Merge pull request #2 from nikdoof/development
v0.3.1
2020-10-01 07:09:13 +01:00
0be702f663 Version 0.3.1 2020-10-01 07:08:32 +01:00
f82f3da790 Update Changelog 2020-07-11 11:20:26 +01:00
5a41ae16b8 Call paho loop to ensure messages are sent 2020-05-16 17:52:17 +01:00
ce40ad30e8 Add CHANGELOG 2020-05-16 16:21:31 +01:00
3 changed files with 20 additions and 2 deletions

17
CHANGELOG.md Normal file
View File

@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.3.1]
### Fixed
- Resolved issue where messages were not being delivered to the MQTT server in time for disconnection.
## [0.3.0] - 2020-04-16
### Added
- Support for Home Assistant auto-discovery
[Unreleased]: https://github.com/nikdoof/aaisp2mqtt/compare/0.3.0...HEAD
[0.3.0]: https://github.com/nikdoof/aaisp2mqtt/compare/0.3.0

View File

@@ -14,7 +14,7 @@ import requests
LOG = logging.getLogger(__name__)
VERSION = '0.3.0'
VERSION = '0.3.1'
AAISP_INFO_URL = 'https://chaos2.aa.net.uk/broadband/info'
@@ -162,6 +162,7 @@ def main():
# disconnect
LOG.info('Disconnecting from MQTT')
client.loop()
client.disconnect()

View File

@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
setup(
name='aaisp2mqtt',
version='0.3.0',
version='0.3.1',
description='A script to publish Andrews & Arnold / AAISP broadband quota and sync rates to MQTT',
long_description=long_description,
long_description_content_type='text/markdown',