Skip to content

Commit

Permalink
bumps version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bb-Ricardo committed Dec 24, 2022
1 parent e38dc2a commit 468d390
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ For InfluxDB 2 it is highly recommended creating a specific write only token for
usage: fritzinfluxdb.py [-h] [-c fritzinfluxdb.ini [fritzinfluxdb.ini ...]] [-d] [-v]
fritzinfluxdb
Version: 1.1.0 (2022-11-02)
Version: 1.2.0 (2022-12-23)
Project URL: https://github.com/bb-Ricardo/fritzinfluxdb
optional arguments:
Expand Down
4 changes: 2 additions & 2 deletions fritzinfluxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
from fritzinfluxdb.classes.fritzbox.handler import FritzBoxHandler, FritzBoxLuaHandler
from fritzinfluxdb.classes.influxdb.handler import InfluxHandler, InfluxLogAndConfigWriter

__version__ = "1.2.0-alpha1"
__version_date__ = "2022-12-XX"
__version__ = "1.2.0"
__version_date__ = "2022-12-23"
__author__ = "Ricardo Bartels <ricardo@bitchbrothers.com>"
__description__ = "fritzinfluxdb"
__license__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions fritzinfluxdb/classes/fritzbox/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ def query_service_data(self, service):
return

if service.link_type is not None and self.config.link_type != service.link_type:
log.warning(f"Service '{service_and_version_name}' not applicable for this "
f"FritzBox Model Link type '{self.config.link_type}'")
log.info(f"Service '{service_and_version_name}' not applicable for this "
f"FritzBox Model Link type '{self.config.link_type}'")
service.available = False
return

Expand Down

0 comments on commit 468d390

Please sign in to comment.