From 73f688a830332fdbb5da8eb099420e91e11d693a Mon Sep 17 00:00:00 2001 From: Roland Jax Date: Thu, 9 Oct 2014 16:27:32 +0200 Subject: [PATCH] Version changed from 0.3.0 to 0.4.0 --- ChangeLog | 4 ++++ NEWS | 5 +++++ autogen.sh | 1 + build/.info | 0 configure.ac | 4 ++-- 5 files changed, 12 insertions(+), 2 deletions(-) delete mode 100644 build/.info diff --git a/ChangeLog b/ChangeLog index 9b71cbac..c8ef30e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ ebusd - ChangeLog ----------------- +2014-10-09 Roland Jax +* class BaseLoop, EBusLoop: polling functionality implemented. +* Version changed from 0.3.0 to 0.4.0 + 2014-10-06 Roland Jax * class CYCData deleted; functionality is moved into libebus. diff --git a/NEWS b/NEWS index 1a3b45da..a5297fe9 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,11 @@ ebusd - NEWS ------------ +2014-10-09 Roland Jax +* Polling ability implemented. +* Reload function for ebus configuration added. +* Version changed from 0.3.0 to 0.4.0 + 2014-08-05 Roland Jax * Vendor specific configuration files removed. diff --git a/autogen.sh b/autogen.sh index 382b09d8..046ee7d9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,6 +3,7 @@ test -n "$srcdir" || srcdir=`dirname "$0"` test -n "$srcdir" || srcdir=. mkdir -p "$srcdir/m4" +mkdir -p "$srcdir/build" autoreconf --force --install --verbose "$srcdir" test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" diff --git a/build/.info b/build/.info deleted file mode 100644 index e69de29b..00000000 diff --git a/configure.ac b/configure.ac index 112a05f3..ef46a0ce 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.65]) -AC_INIT([ebusd], [0.3.0], [roland.jax@liwest.at], [ebusd], [https://github.com/yuhu-/ebusd]) +AC_INIT([ebusd], [0.4.0], [roland.jax@liwest.at], [ebusd], [https://github.com/yuhu-/ebusd]) AC_CONFIG_SRCDIR([src/main.cpp]) AC_CONFIG_AUX_DIR([build]) @@ -11,7 +11,7 @@ AC_CONFIG_HEADERS([config.h]) AC_PROG_CXX -PKG_CHECK_MODULES([LIBEBUS], [libebus-0.1 >= 0.1.0]) +PKG_CHECK_MODULES([LIBEBUS], [libebus-0.2 >= 0.2.0]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT