Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev to Main 1.0.7 #25

Merged
merged 2 commits into from
Jun 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
1 change: 0 additions & 1 deletion custom_components/swemail/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

PLATFORMS = ["sensor"]

@asyncio.coroutine
async def async_setup(hass, config):
"""Set up HASL integration"""

Expand Down
2 changes: 1 addition & 1 deletion custom_components/swemail/const.py
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion custom_components/swemail/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}