diff options
author | John (J5) Palmieri <johnp@redhat.com> | 2006-07-17 19:42:36 +0000 |
---|---|---|
committer | John (J5) Palmieri <johnp@redhat.com> | 2006-07-17 19:42:36 +0000 |
commit | a3a22a26095c947200270248ce1c121997b452b6 (patch) | |
tree | c6cb8fe63473439890416fef576950a134e8df3b | |
parent | 70d525d569bb89945d3124305594795a925e1faa (diff) |
* Release 0.90dbus-0.90
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 21 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2006-07-17 John (J5) Palmieri <johnp@redhat.com> + + * Released 0.90 + 2006-07-17 Havoc Pennington <hp@redhat.com> * dbus/dbus-marshal-basic.c (_dbus_type_to_string): support 64-bit @@ -34,7 +38,7 @@ (_dbus_connection_get_dispatch_status_unlocked): If we have pending calls queued timeouts on disconnect - * dbus/dbus-pending-call.ci (_dbus_pending_call_set_connection): + * dbus/dbus-pending-call.c (_dbus_pending_call_set_connection): Remove 2006-07-13 Carlos Garcia Campos <carlosgc@gnome.org> @@ -1,3 +1,17 @@ +D-Bus 0.90 (17 July 2006) +- API/ABI freeze for 1.0 +- Bindings are now split out into seperate packages +- ListActivatableNames added as a method on the bus +- Removed deprecated dbus_connection_disconnect (use dbus_connection_close) +- Shared connections are now unreffed on disconnect +- Fixed pending calls for threaded enviornments +- Pending calls get timed out on connection disconnect +- dbus_connection_send_with_reply returns TRUE and a NULL pending call + if you call it on a connection object which has been disconnected already + (it returns FALSE on Out of Memory errors only) +- dbus-monitor now correctly catches methods, not just signals +- dbus-monitor now prints object paths + D-BUS 0.62 (12 June 2006) == - Doc fixes diff --git a/configure.in b/configure.in index 0bc65f60..e480ed52 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_INIT(dbus/dbus.h) AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE(dbus, 0.62) +AM_INIT_AUTOMAKE(dbus, 0.90) AM_CONFIG_HEADER(config.h) @@ -25,7 +25,7 @@ AM_MAINTAINER_MODE # ## increment if the interface has additions, changes, removals. -LT_CURRENT=2 +LT_CURRENT=3 ## increment any time the source changes; set to ## 0 if you increment CURRENT |