diff options
| -rw-r--r-- | ChangeLog | 9 | ||||
| -rw-r--r-- | NEWS | 32 | ||||
| -rw-r--r-- | dbus/dbus-list.c | 4 | 
3 files changed, 41 insertions, 4 deletions
| @@ -1,5 +1,14 @@  2005-11-30  John (J5) Palmieri  <johnp@redhat.com> +	* Released 0.60 + +2005-11-30  John (J5) Palmieri  <johnp@redhat.com> + +	* dbus/dbus-list.c (_dbus_list_insert_after_link, _dbus_list_insert_after): +	remove #ifdef DBUS_BUILD_TESTS since we use these methods in production code + +2005-11-30  John (J5) Palmieri  <johnp@redhat.com> +  	* dbus/dbus-connection.c (dbus_connection_read_write): Add new  	method for getting messages off the bus in the absence of a  	mainloop.  This method is much like  @@ -1,3 +1,35 @@ +D-BUS 0.60 (30 November 2005) +== + +- major ABI/API changes - sonames changed +- RequestName queuing behavior has changed (refer to dbus-specification) +  - DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT has been removed and +    DBUS_NAME_FLAG_ALLOW_REPLACEMENT has been added to the flags +- signals emitted by the bus now show up in the introspect data +- auth EXTERNAL now supported on BSD varients +- ReleaseName method added to the bus to allow a service +  to remove itself as owner of a bus name +- dbus_connection_read_write added for getting messages off the bus  +  in the absence of a mainloop +- Qt4 bindings added and the Qt3 bindings have been depricated +- python bindings: +  - marshal using introspect data if available +  - better exception handling and propigation +  - private connections are now supported +  - UTF-8 cleanups +  - out_signature added to method decorators for specifying +    how the return values should be marshaled +  - sender_keyword added to method decorators for specifying +    and argument to provide the unique name of the method caller +  - async_callbacks added to method decorators  +  - multiple inheritance of classes now supported  +- GLib bindings: +  - respect NoReply annotations +  - dbus_g_method_return_get_reply and dbus_g_method_return_send_reply +    added to the lowlevel code for use when the dbus-glib marshalling +    code is not adiquate +- numerous bug fixes all around +  D-BUS 0.50 (06 September 2005)  ===  This is a minor release from 0.36.2.  The series number has changed  diff --git a/dbus/dbus-list.c b/dbus/dbus-list.c index 7389c268..15911743 100644 --- a/dbus/dbus-list.c +++ b/dbus/dbus-list.c @@ -346,7 +346,6 @@ _dbus_list_insert_before (DBusList **list,  }  #endif /* DBUS_BUILD_TESTS */ -#ifdef DBUS_BUILD_TESTS  /**   * Inserts data into the list after the given existing link.   *  @@ -375,7 +374,6 @@ _dbus_list_insert_after (DBusList **list,    return TRUE;  } -#endif /* DBUS_BUILD_TESTS */  /**   * Inserts a link into the list before the given existing link. @@ -395,7 +393,6 @@ _dbus_list_insert_before_link (DBusList **list,      link_before (list, before_this_link, link);  } -#ifdef DBUS_BUILD_TESTS  /**   * Inserts a link into the list after the given existing link.   *  @@ -413,7 +410,6 @@ _dbus_list_insert_after_link (DBusList **list,    else        link_after (list, after_this_link, link);  } -#endif /* DBUS_BUILD_TESTS */  /**   * Removes a value from the list. Only removes the | 
