summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Merlino <regis.merlino@intel.com>2013-10-03 15:00:54 +0200
committerRegis Merlino <regis.merlino@intel.com>2013-10-03 15:12:06 +0200
commit3fcae066b44195c187b5611acfd511b9a87850d0 (patch)
tree6feaeb55248258cc9de3647767ba5140aa9c77ac
parentbfb58279bddcd6c12d89a71fddd4c78d09c49a32 (diff)
downloaddleyna-server-3fcae066b44195c187b5611acfd511b9a87850d0.tar.gz
[Release] Version 0.4.0v0.4.0
Signed-off-by: Regis Merlino <regis.merlino@intel.com>
-rw-r--r--ChangeLog16
-rw-r--r--configure.ac4
2 files changed, 18 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ed08b55..856570a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+version 0.4.0
+ - Logs: provide correct component version
+ - Don't return empty properties in GetAll
+ - Refactor the filtering for GetAll
+ - Add a new MediaDevice BrowseObjects API
+ https://github.com/01org/dleyna-server/issues/114
+ - Support for a new "Error" property, used in BrowseObjects
+ - Deprecate LastChange in favor of Changed signal
+ https://github.com/01org/dleyna-server/issues/109
+ - Fix a memory leak
+ https://github.com/01org/dleyna-collabora-android/issues/58
+ - Support of the ChildCount property
+ https://github.com/01org/dleyna-server/issues/122
+ - New whitelist APIs
+ - Add a 'never quit' property to the Manager object
+
version 0.2.1
- Various build optimizations
- Fix a crash case when the server stops
diff --git a/configure.ac b/configure.ac
index d9b857c..626e8b6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_PREREQ([2.66])
AC_INIT([dleyna-server],
- [0.2.2],
+ [0.4.0],
[https://github.com/01org/dleyna-server/issues/new],
,
[https://01.org/dleyna/])
@@ -83,7 +83,7 @@ AC_ARG_ENABLE(master-build,,
[master_build=no])
AS_IF([test "x$master_build" = "xno"],
- [PKG_CHECK_MODULES([DLEYNA_CORE], [dleyna-core-1.0 >= 0.2.2])],
+ [PKG_CHECK_MODULES([DLEYNA_CORE], [dleyna-core-1.0 >= 0.4.0])],
[this_abs_top_srcdir=`cd "$srcdir" && pwd`;
DLEYNA_CORE_CFLAGS="-I$this_abs_top_srcdir/../dleyna-core";
DLEYNA_CORE_LIBS="-L$this_abs_top_srcdir/../dleyna-core/.libs -ldleyna-core-1.0"