-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix white- and blacklist config via docker (#6)
> 2.0.1
- Loading branch information
Showing
4 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# CHANGELOG | ||
|
||
## 2.0.1 | ||
|
||
* Fix white- and blacklist config via docker env where and empty string resulted in a pass-all regex overwriting the blacklist. | ||
|
||
## 2.0.0 | ||
|
||
* Rework of the complete structure, but no functional changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""docker2mqtt package.""" | ||
|
||
__VERSION__ = "2.0.0" | ||
__VERSION__ = "2.0.1" | ||
|
||
from .const import ( | ||
ANSI_ESCAPE, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = docker2mqtt | ||
version = 2.0.0 | ||
version = 2.0.1 | ||
author = Cyrill Raccaud | ||
author_email = [email protected] | ||
description = Send your docker stats and and events to mqtt and discovery them in home assistant. | ||
|