Version changed from 0.3.0 to 0.4.0

This commit is contained in:
Roland Jax
2014-10-09 16:27:32 +02:00
parent c478e0bb08
commit 73f688a830
5 changed files with 12 additions and 2 deletions
+4
View File
@@ -1,6 +1,10 @@
ebusd - ChangeLog
-----------------
2014-10-09 Roland Jax <roland.jax@liwest.at>
* class BaseLoop, EBusLoop: polling functionality implemented.
* Version changed from 0.3.0 to 0.4.0
2014-10-06 Roland Jax <roland.jax@liwest.at>
* class CYCData deleted; functionality is moved into libebus.
+5
View File
@@ -1,6 +1,11 @@
ebusd - NEWS
------------
2014-10-09 Roland Jax <roland.jax@liwest.at>
* Polling ability implemented.
* Reload function for ebus configuration added.
* Version changed from 0.3.0 to 0.4.0
2014-08-05 Roland Jax <roland.jax@liwest.at>
* Vendor specific configuration files removed.
+1
View File
@@ -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" "$@"
View File
+2 -2
View File
@@ -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