0.1.10
	* ext/ruby-dbus-connection.c: add DBusConnection#has_messages_to_send. will
	  only be present if compiled against D-BUS 0.23 or later.
	* ext/extconf.rb: use pkg_config() instead of mkmf-gnome2's
	  PKGConfig#have_module.
	
0.1.9
	* lib/dbus.rb: add wrappers in DBus::Bus for: DBus::Binding::bus_activate_service(),
		DBus::Binding::bus_get_unix_user(), DBus::Binding::bus_get_base_service(),
		DBus::Binding::bus_set_base_service()
	* ext/ruby-dbus-bus.c: add #bus_set_base_service, move #bus_get_base_service
	from DBusConnection, add #bus_get_unix_user, add #bus_activate_service
	* ext/ruby-dbus-connection.c: move DBusConnection#get_base_service to
		ext/ruby-dbus-bus.c to match the D-BUS C API
	* ext/ruby-dbus-connection.c: print out the backtrace if a callback raises
	  an exception, but don't throw it, and do nil check using NIL_P instead of
		== Qnil.
	
0.1.8
	* ext/ruby-dbus-connection.c: don't use rb_gc_register_address, but use a
	  mark function instead, and store the callbacks in an array in the DATA
	  struct. many thanks to Geoff Youngs for pointing out this problem!
	* ext/ruby-dbus-message.c: clean up warning
	* README: add DBUS_VERBOSE tip

0.1.7
	* ext/ruby-dbus-*.c: respect D-BUS ownership rules, and ref returned
	  objects in xxx_NEW() if we haven't explicitly allocated them ourselves
	* ext/ruby-dbus.h: clean up to match ownership rule changes, add DEBUG()
	  macro, enabled if --debug is passed to extconf.rb.

0.1.6:
	* phantom internal release

0.1.5
	* dbus.gemspec: add for persons who want to use RubyGems instead of RPA
	* README: update for setup.rb
	* setup.rb: add setup.rb so people don't need to mess with extension
	  compiling themselves if they don't have gems or RPA. 0.1.4 didn't
	  provide a way to install the lib/* files either.

0.1.4
	* ext/ruby-dbus-server.c: fix memory leak in #get_address
	* test/*.rb: update for DBus::Binding change
	* ext/*.c,lib/dbus.rb: move D-BUS API classes into DBus::Binding namespace
	* ext/*.c: add complete RDoc coverage
	* ext/ruby-dbus-connection.c: add #get_append_iter
	* ext/ruby-dbus-message-iter.c: make rdbus_message_iter_new support a flag
	  to indicate whether an append iterator is desired or not
	* test/tc_message.rb: add tests for Enumerable interface to DBusMessage
	* test/tc_all.rb: only find tests in test/, glob was too greedy
	* lib/dbus.rb: make DBusMessage mix in Enumerable for more natural
	  message argument value manipulation
	* install.rb: customize RDoc generation phase

0.1.3
	* lib/dbus/version.rb: add, so we can keep binding version in ONE PLACE
	* lib/dbus.rb: move binding version into dbus/version.rb
	* install.rb: load dbus/version for binding version
	* README: warn clearly that install.rb is used by RPA only

0.1.1
  * examples/volumed.rb: add this file to show HAL example
	* lib/dbus.rb: instead of raising an exception in the service process, send the exception
		error message back to client
	* lib/dbus.rb: add more RDoc
  * ext/ruby-dbus-connection.c: clean up callback invocation, always wrap
    invocation with rb_protect(), as rb_raise() does longjmp, who knows how
    well that plays with glib/dbus' internal state!
  * ext/ruby-dbus-connection.c: use a heap allocated VALUE array for the user data of
    dbus_connection_add_filter() as well
  * ChangeLog: first revision of this file

0.1.0
	* all files: first release
