mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 05:18:00 +02:00
Prepare dbus 1.5.12
This commit is contained in:
parent
d891d816d7
commit
b01214cd58
2 changed files with 10 additions and 5 deletions
7
NEWS
7
NEWS
|
|
@ -1,6 +1,8 @@
|
|||
D-Bus 1.5.11 (UNRELEASED)
|
||||
D-Bus 1.5.12 (2012-03-27)
|
||||
==
|
||||
|
||||
The “Big Book of Science” release.
|
||||
|
||||
• Add public API to validate various string types:
|
||||
dbus_validate_path(), dbus_validate_interface(), dbus_validate_member(),
|
||||
dbus_validate_error_name(), dbus_validate_bus_name(), dbus_validate_utf8()
|
||||
|
|
@ -12,6 +14,9 @@ D-Bus 1.5.11 (UNRELEASED)
|
|||
• Enumerate data files included in the build rather than using find(1)
|
||||
(fd.o #33840, Simon McVittie)
|
||||
|
||||
• Add support for policy rules like <allow own_prefix="com.example.Service"/>
|
||||
in dbus-daemon (fd.o #46273, Alban Crequy)
|
||||
|
||||
• Windows-specific:
|
||||
· make dbus-daemon.exe --print-address (and --print-pid) work again
|
||||
on Win32, but not on WinCE (fd.o #46049, Simon McVittie)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.63])
|
|||
|
||||
m4_define([dbus_major_version], [1])
|
||||
m4_define([dbus_minor_version], [5])
|
||||
m4_define([dbus_micro_version], [11])
|
||||
m4_define([dbus_micro_version], [12])
|
||||
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])
|
||||
|
|
@ -32,16 +32,16 @@ AC_DEFINE_UNQUOTED(DBUS_DAEMON_NAME,"dbus-daemon",[Name of executable])
|
|||
#
|
||||
|
||||
## increment if the interface has additions, changes, removals.
|
||||
LT_CURRENT=9
|
||||
LT_CURRENT=10
|
||||
|
||||
## increment any time the source changes; set to
|
||||
## 0 if you increment CURRENT
|
||||
LT_REVISION=5
|
||||
LT_REVISION=0
|
||||
|
||||
## increment if any interfaces have been added; set to 0
|
||||
## if any interfaces have been changed or removed. removal has
|
||||
## precedence over adding, so set to 0 if both happened.
|
||||
LT_AGE=6
|
||||
LT_AGE=7
|
||||
|
||||
AC_SUBST(LT_CURRENT)
|
||||
AC_SUBST(LT_REVISION)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue