diff --git a/CHANGES b/CHANGES index 7468b08..0ef4a5f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,27 @@ +WMbusmeters has moved to its new github organization: github.com/wmbusmeters + +Bibo significantly improved the experience for installing the ha-addon +by downloading a prepared docker image instead of building from scratch! +Use the new ha-addon location: github.com/wmbusmeters/wmbusmeters-ha-addon +Thanks Bibo! + +Bibo contributed many github workflow improvements! Thanks Bibo! + +Thecem,Krzysztof Hajdamowicz, chpego and convicte contributed several improvements to the ha-addon. Thanks! + +idl0r updated the eurosii driver with more telegrams. Thank you idl0r! + +Roland Huß contributed compressed telegram format for the multical21. Thanks Roland! + +Petter Reinholdtsen contributed several fixes to the deb building process and a speedup +of the build workflow. Thanks Petter! Added the watertech meter. +Christoph Hannebauer contributed another auto-detect combo for the qheat driver. Thanks Christoph! + +Gizmocuz added missing logging for the ell_type. Thanks Gizmocuz! + George Hopkins improved the fhkvdataiii driver to infer the current year and the rtlwmbus driver to propagate the timestamp from rtlwmbus input into the final json timestamp. Thanks George! diff --git a/README.md b/README.md index d4b813b..deade3f 100644 --- a/README.md +++ b/README.md @@ -390,7 +390,7 @@ depending on if you are running as a daemon or not. # Running without config files, good for experimentation and test. ``` -wmbusmeters version: 1.11.0 +wmbusmeters version: 1.12.0 Usage: wmbusmeters {options} [device] { [meter_name] [meter_driver] [meter_id] [meter_key] }* wmbusmeters {options} [hex] { [meter_name] [meter_driver] [meter_id] [meter_key] }* wmbusmetersd {options} [pid_file] diff --git a/scripts/release.sh b/scripts/release.sh index d1ca2aa..957106f 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -53,7 +53,7 @@ fi RC_VERSION="$MAJOR.$MINOR.$PATCH-RC$RC" -if [ git tag "$RC_VERSION" | grep -q "$RC_VERSION" ] +if git tag | grep -q "$RC_VERSION" then echo "Oups! The tag $RC_VERSION already exists! Please remove it!" exit 0