diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-03-27 13:00:19 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-03-27 13:00:19 +0100 |
commit | 24e0d90908cf0023035dd077c2a4c22e7633c45e (patch) | |
tree | 4e7018d188ef60746f87dc381d7ee7a767377dae | |
parent | 35bbc8b194076f77b08709c9028339ea92d43bad (diff) | |
download | dbus-24e0d90908cf0023035dd077c2a4c22e7633c45e.tar.gz dbus-24e0d90908cf0023035dd077c2a4c22e7633c45e.tar.bz2 dbus-24e0d90908cf0023035dd077c2a4c22e7633c45e.zip |
Prepare version 1.4.20dbus-1.4.20
-rw-r--r-- | NEWS | 22 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 23 insertions, 3 deletions
@@ -1,8 +1,28 @@ -D-Bus 1.4.19 (UNRELEASED) +D-Bus 1.4.20 (2012-03-27) == +The “Nikolai Tesla and You” release. + +Dependencies: + +• The version of GLib required for some of the regression tests has + increased to 2.24. + +Changes: + • Make dbus-protocol.h compatible with C++11 (fd.o #46147, Marc Mutz) +• Use GLib 2.31.x thread API, with backwards compatibility to 2.24, + fixing compiler warnings and link failure when using 2.32 + (fd.o #44413, Debian #665665; Martin Pitt) + +• Enumerate data files included in the build rather than using find(1) + (fd.o #33840, Simon McVittie) + +• Windows-specific: + · fix duplicate case value when compiling against mingw-w64 + (fd.o #47321, Andoni Morales Alastruey) + D-Bus 1.4.18 (2012-02-13) == diff --git a/configure.ac b/configure.ac index 9d9bf20c..a504a84c 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], [19]) +m4_define([dbus_micro_version], [20]) 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=8 +LT_REVISION=9 ## increment if any interfaces have been added; set to 0 ## if any interfaces have been changed or removed. removal has |