diff --git a/debian/changelog b/debian/changelog index 96732c2..5aa996c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +smartmeter-datacollector (1.1.0-1) unstable; urgency=low + + * add L+G E360 and Kamstrup HAN-NVE smart meter support + * software parses DLMS messages that do not start with a push object list + * improved OBIS code handling + * use message timestamp as fallback + * add system time (from OS) override option + * make baudrate configurable for each smart meter + * extend and generalize meter ID detection + * fix current value scaling + * update dependencies + * add Python 3.10 code checks + + -- Supercomputing Systems AG Fri, 19 May 2023 19:18:26 +0200 + + smartmeter-datacollector (1.0.2-1) unstable; urgency=low * bugfix catching gurux converter failures diff --git a/debian/control b/debian/control index c35adfe..528bf34 100644 --- a/debian/control +++ b/debian/control @@ -16,9 +16,7 @@ Description: Smart Meter Data Collector The acquired values can be forwarded to one or more data sinks like a MQTT broker or logger. . The following smart meters are supported: - * Landis+Gyr E450: Data pushed by smart meter over CII interface (wired M-Bus). Encoded with HDLC and DLMS/COSEM. - * Unencrypted data - * Encrypted data - * Iskraemeco AM550: Data pushed by smart meter over P1 interface (DSMR). Encoded with HDLC (IEC 62056-46) and DLMS/COSEM. - * Unencrypted data - * Encrypted data + * Landis+Gyr E450 + * Landis+Gyr E360 + * Iskraemeco AM550 + * Kamstrup OMNIPOWER with HAN-NVE diff --git a/smartmeter_datacollector/__version__.py b/smartmeter_datacollector/__version__.py index d40a234..1e7508d 100644 --- a/smartmeter_datacollector/__version__.py +++ b/smartmeter_datacollector/__version__.py @@ -5,4 +5,4 @@ # SPDX-License-Identifier: GPL-2.0-only # See LICENSES/README.md for more information. # -__version__ = "1.0.2" +__version__ = "1.1.0"