From fd6969250dc3c1edaad103948990c5f974099e7e Mon Sep 17 00:00:00 2001 From: d3vyce Date: Tue, 2 Apr 2024 19:47:51 +0200 Subject: [PATCH] bump: version + update: README --- CHANGELOG.md | 6 +++++- README.md | 8 ++++---- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b313c..897050f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## 1.2.0 - 04-02-2024 +fix: catch UnicodeDecodeError when loading json from broker +fix: use .get() to avoid KeyError + ## 1.1.0 - 02-11-2024 add: Grafana dashboard to README -fix: MQTT brocker disconnection when client connection timeout +fix: MQTT broker disconnection when client connection timeout ## 1.0.0 - 12-19-2023 Initial release diff --git a/README.md b/README.md index 614eadf..f94f71d 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ ![Grafana Dashboard](https://grafana.com/api/dashboards/20182/images/15332/image) Simple prometheus exporter for Linky teleinfo. -Teleinfo Tasmota project : -https://github.com/NicolasBernaerts/tasmota/tree/master/teleinfo -Grafana Dashboard: -https://grafana.com/grafana/dashboards/20182-linky-teleinfo/ + +[Teleinfo Tasmota project](https://github.com/NicolasBernaerts/tasmota/tree/master/teleinfo) + +[Grafana Dashboard](https://grafana.com/grafana/dashboards/20182-linky-teleinfo/) ## Installation ### Pip diff --git a/pyproject.toml b/pyproject.toml index 16fca90..f342318 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "teleinfo-exporter" -version = "1.1.0" +version = "1.2.0" dependencies = [ "bcrypt ~= 4.1", "configargparse ~= 1.7",