diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-30 20:14:51 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-30 20:14:51 +0100 |
commit | 789800af438ae1f43b8fdcc1f81874e6ea8b49d0 (patch) | |
tree | 15b8748bf0bd91e30983e103fdd18205f07b5824 | |
parent | 28812c885f0b75fa9b2f6094534b85846fcd2cf4 (diff) | |
download | dbus-789800af438ae1f43b8fdcc1f81874e6ea8b49d0.tar.gz dbus-789800af438ae1f43b8fdcc1f81874e6ea8b49d0.tar.bz2 dbus-789800af438ae1f43b8fdcc1f81874e6ea8b49d0.zip |
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 8 insertions, 3 deletions
@@ -1,6 +1,8 @@ -D-Bus 1.8.2 (UNRELEASED) +D-Bus 1.8.2 (2014-04-30) == +The “nobody wants red” release. + Enhancements: • in the CMake build system, add some hints for Linux users cross-compiling @@ -21,6 +23,9 @@ Fixes: • on Windows, allow up to 8K connections to the dbus-daemon, instead of the previous 64 (fd.o #71297; Cristian Onet, Ralf Habacker) +• cope with \r\n newlines in regression tests, since on Windows, + dbus-daemon.exe uses text mode (fd.o #75863, Руслан Ижбулатов) + D-Bus 1.8.0 (2014-01-20) == diff --git a/configure.ac b/configure.ac index 1ac18853..eccdd30f 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], [8]) -m4_define([dbus_micro_version], [1]) +m4_define([dbus_micro_version], [2]) 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]) @@ -37,7 +37,7 @@ LT_CURRENT=11 ## increment any time the source changes; set to ## 0 if you increment CURRENT -LT_REVISION=3 +LT_REVISION=4 ## increment if any interfaces have been added; set to 0 ## if any interfaces have been changed or removed. removal has |