diff --git a/ChangeLog.md b/ChangeLog.md index 03a9bd77..5b7549d6 100755 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,4 @@ -# next version +# 3.2 (2018-05-10) ## Breaking Changes * changed default configuration file location to config web service at ebusd.eu @@ -13,12 +13,13 @@ * added support for retrieving configuration files from config web service * changed docker image to be smaller size and fixed missing library dependencies * added automatic reconnect to MQTT broker -* changed logging for messages from "updated" to "received" and "sent" depending on who initiated the request +* changed logging for messages from "updated" to "received" and "sent" depending on who initiated the request and added message direction/scan/poll/update info * added support for serving .csv files and new argument maxage to HTTP/JSON port * added timeout argument and error result code to ebusctl * added "-def" option to "read" and "write" commands and "define" command to test message defintions and add new definitions during runtime and disabled all by default (use "--enabledefine" command line option). * added "encode" and "decode" commands for testing field definitions * added option to ignore failed host name resolution during initialization of MQTT +* added logging when device became invalid and close it on error # 3.1 (2017-12-26) diff --git a/README.md b/README.md index 9c276824..168a747d 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,9 @@ Usage instructions and further information can be found here: Configuration ------------- -The most important part of each ebusd installation is the message -configuration. By default, only rudimentary messages are interpreted. -Check the Wiki and/or the configuration repository: +The most important part of each ebusd installation is the message configuration. +Starting with version 3.2, ebusd uses the config web service at ebusd.eu to retrieve +the latest configuration files that are reflected by the configuration repository: > https://github.com/john30/ebusd-configuration diff --git a/VERSION b/VERSION index 8c50098d..a3ec5a4b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1 +3.2 diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile index 1e2998b8..2289a9b0 100755 --- a/contrib/docker/Dockerfile +++ b/contrib/docker/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \ LABEL maintainer "ebusd@ebusd.eu" -ENV EBUSD_VERSION 3.1 +ENV EBUSD_VERSION 3.2 ENV EBUSD_ARCH amd64 LABEL version "${EBUSD_VERSION}-${EBUSD_ARCH}-devel" diff --git a/contrib/docker/release/Dockerfile b/contrib/docker/release/Dockerfile index 511d5099..b6e1caa1 100755 --- a/contrib/docker/release/Dockerfile +++ b/contrib/docker/release/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ LABEL maintainer "ebusd@ebusd.eu" -ENV EBUSD_VERSION 3.1 +ENV EBUSD_VERSION 3.2 ENV EBUSD_ARCH amd64 LABEL version "${EBUSD_VERSION}-${EBUSD_ARCH}" diff --git a/contrib/docker/runtime/Dockerfile b/contrib/docker/runtime/Dockerfile index aa169b9c..9c6d6d31 100755 --- a/contrib/docker/runtime/Dockerfile +++ b/contrib/docker/runtime/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ LABEL maintainer "ebusd@ebusd.eu" -ENV EBUSD_VERSION 3.1 +ENV EBUSD_VERSION 3.2 ENV EBUSD_ARCH amd64 LABEL version "${EBUSD_VERSION}-${EBUSD_ARCH}-mqtt1"