From 0be702f66355152316b33575cbe562dab8c7f204 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 1 Oct 2020 07:08:32 +0100 Subject: [PATCH] Version 0.3.1 --- CHANGELOG.md | 4 ++-- aaisp2mqtt.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index efb9629..d569afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,13 @@ 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). -## [Unreleased] +## [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 autodiscovery +- Support for Home Assistant auto-discovery [Unreleased]: https://github.com/nikdoof/aaisp2mqtt/compare/0.3.0...HEAD diff --git a/aaisp2mqtt.py b/aaisp2mqtt.py index d35c567..498f89a 100644 --- a/aaisp2mqtt.py +++ b/aaisp2mqtt.py @@ -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' diff --git a/setup.py b/setup.py index 056b8fd..6b6f523 100644 --- a/setup.py +++ b/setup.py @@ -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',