diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-04-08 14:30:23 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-04-08 14:30:23 +0100 |
commit | c34b6747eb0ef0e6fd2d17ec8dd9cb16f3d3b67e (patch) | |
tree | d7c3c2e50b7120f17bc7856b5783d495332c7ee6 | |
parent | 171934b377a5e205c902c0645e6b8e802014232c (diff) |
Prepare version 1.4.8dbus-1.4.8
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 13 insertions, 3 deletions
@@ -1,6 +1,8 @@ -D-Bus 1.4.8 (UNRELEASED) +D-Bus 1.4.8 (2011-04-08) == +The "It's like the beginning of a lobster" release. + • Rename configure.in to configure.ac, and update it to modern conventions (fd.o #32245; Javier Jardón, Simon McVittie) • Correctly give XDG_DATA_HOME priority over XDG_DATA_DIRS (fd.o #34496, @@ -14,6 +16,12 @@ D-Bus 1.4.8 (UNRELEASED) booleans when sending them (fd.o #16338, NB#223152; Simon McVittie) • Add UnknownObject, UnknownInterface, UnknownProperty and PropertyReadOnly errors to dbus-shared.h (fd.o #34527, Lennart Poettering) + • Break up a huge conditional in config-parser so gcov can produce coverage + data (fd.o #10887, Simon McVittie) + • List which parts of the Desktop Entry specification are applicable to + .service files (fd.o #19159, Sven Herzberg) + • Don't suppress service activation if two services have the same Exec= + (fd.o #35750, Colin Walters) • Windows: · Avoid the name ELEMENT_TYPE due to namespace-pollution from winioctl.h (Andre Heinecke) @@ -23,6 +31,8 @@ D-Bus 1.4.8 (UNRELEASED) D-Bus 1.4.6 (2010-02-17) == +The "1, 2, miss a few, 99, 100" release. + • Remove unfinished changes intended to support GTest-based tests, which were mistakenly included in 1.4.4 diff --git a/configure.ac b/configure.ac index 03914e17..f2e02a16 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.63]) m4_define([dbus_major_version], [1]) m4_define([dbus_minor_version], [4]) -m4_define([dbus_micro_version], [7]) +m4_define([dbus_micro_version], [8]) m4_define([dbus_version], [dbus_major_version.dbus_minor_version.dbus_micro_version]) AC_INIT([dbus],[dbus_version],[https://bugs.freedesktop.org/enter_bug.cgi?product=dbus],[dbus]) @@ -36,7 +36,7 @@ LT_CURRENT=8 ## increment any time the source changes; set to ## 0 if you increment CURRENT -LT_REVISION=4 +LT_REVISION=5 ## increment if any interfaces have been added; set to 0 ## if any interfaces have been changed or removed. removal has |