From ef5d0fa6fb908c684f0b6dee3b9cceda7861e9f2 Mon Sep 17 00:00:00 2001 From: Markus Thulin Date: Wed, 7 Jun 2023 12:54:13 +0200 Subject: [PATCH 1/2] Removed deprecated decorator @asyncio.coroutine --- custom_components/swemail/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/custom_components/swemail/__init__.py b/custom_components/swemail/__init__.py index f67720b..d5d76f4 100644 --- a/custom_components/swemail/__init__.py +++ b/custom_components/swemail/__init__.py @@ -17,7 +17,6 @@ PLATFORMS = ["sensor"] -@asyncio.coroutine async def async_setup(hass, config): """Set up HASL integration""" From 78b644f1f5065b7a7c58b35440e9fa0f22eda104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20S=C3=B6rl=C3=B6v?= Date: Mon, 12 Jun 2023 11:45:56 +0200 Subject: [PATCH 2/2] Version bump --- CHANGELOG.md | 5 +++++ README.md | 2 +- custom_components/swemail/const.py | 2 +- custom_components/swemail/manifest.json | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70dd027..587ad28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [1.0.7] (2023-06-12) + +### Fixes +- Fixed [#23](https://github.com/DSorlov/swemail/issues/23). Thanks to @thulin82 + ## [1.0.6] (2023-05-19) ### Fixes diff --git a/README.md b/README.md index 6cc8689..c3fda92 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ![maintained](https://img.shields.io/maintenance/yes/2023.svg) [![hacs_badge](https://img.shields.io/badge/hacs-default-green.svg)](https://github.com/custom-components/hacs) [![ha_version](https://img.shields.io/badge/home%20assistant-2021.12%2B-green.svg)](https://www.home-assistant.io) -![version](https://img.shields.io/badge/version-1.0.6-green.svg) +![version](https://img.shields.io/badge/version-1.0.7-green.svg) ![stability-alpha](https://img.shields.io/badge/stability-stable-green.svg) [![maintainer](https://img.shields.io/badge/maintainer-dsorlov-blue.svg)](https://github.com/DSorlov) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) diff --git a/custom_components/swemail/const.py b/custom_components/swemail/const.py index 09564bb..3366670 100644 --- a/custom_components/swemail/const.py +++ b/custom_components/swemail/const.py @@ -1,7 +1,7 @@ """Constants for the component.""" # Component domain, used to store component data in hass data. -__version__ = "1.0.6" +__version__ = "1.0.7" VERSION = __version__ DOMAIN = "swemail" diff --git a/custom_components/swemail/manifest.json b/custom_components/swemail/manifest.json index d9694d7..502f252 100644 --- a/custom_components/swemail/manifest.json +++ b/custom_components/swemail/manifest.json @@ -7,6 +7,6 @@ "issue_tracker": "https://github.com/dsorlov/swemail/issues", "codeowners": ["@dsorlov"], "iot_class": "cloud_polling", - "version": "1.0.6", + "version": "1.0.7", "quality_scale": "silver" }