dbus ChangeLog,1.724,1.725 NEWS,1.18,1.19 configure.in,1.108,1.109

John Palmieri johnp at freedesktop.org
Mon Mar 7 13:10:49 PST 2005


Update of /cvs/dbus/dbus
In directory gabe:/tmp/cvs-serv1700

Modified Files:
	ChangeLog NEWS configure.in 
Log Message:
* NEWS: Update for 0.31

* configure.in: Release 0.31
  add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping

* qt/Makefile.am: fixed build

* dbus/Makefile.am: soname bump for libdbus

* glib/Makefile.am: soname bump for libdbus-glib
					


Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.724
retrieving revision 1.725
diff -u -d -r1.724 -r1.725
--- ChangeLog	5 Mar 2005 18:38:54 -0000	1.724
+++ ChangeLog	7 Mar 2005 21:10:46 -0000	1.725
@@ -1,3 +1,15 @@
+2005-03-07  John (J5) Palmieri  <johnp at redhat.com>
+	* NEWS: Update for 0.31
+
+	* configure.in: Release 0.31
+	add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
+
+	* qt/Makefile.am: fixed build
+
+	* dbus/Makefile.am: soname bump for libdbus
+
+	* glib/Makefile.am: soname bump for libdbus-glib
+
 2005-03-05  Havoc Pennington  <hp at redhat.com>
 
 	* dbus/dbus-sysdeps.c:

Index: NEWS
===================================================================
RCS file: /cvs/dbus/dbus/NEWS,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- NEWS	12 Jan 2005 22:55:32 -0000	1.18
+++ NEWS	7 Mar 2005 21:10:46 -0000	1.19
@@ -1,3 +1,30 @@
+D-BUS 0.31 (07 Mar 2005)
+===
+
+- land the new message args API and recursive type system
+- add docs and fixed Doxygen warnings throught source
+- split out some functions not needed in libdbus to *-util.c source files
+- take out type convienience functions
+- libdbus now back below 150K
+- booleans are now 32-bit instead of 8-bit
+- specification updated
+- grand renaming to strip out the use of "service"
+  just say "name" instead (or "bus name" when ambiguous)
+- rename dbus-daemon-1 to dbus-daemon throughout
+- rename activation to auto-start
+- auto-start on by default now
+- note that libdbus is the low-level API
+- python bindings updated to the new API
+- mono bindings updated to the new API
+- add 16 bit types
+- dictionaries are now ARRAYS of DICT_ENTRY
+- dbus-glib-tool renamed to dbus-binding-tool
+- massive rewrite of the glib bindings
+- saner names for the dbus interface, object path and service defines
+- new functions for handling type signitures
+- bump sonames for libdbus and libdbus-glib
+- various small fixes
+
 D-BUS 0.23 (11 Jan 2005)
 ===
 

Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- configure.in	13 Feb 2005 17:16:25 -0000	1.108
+++ configure.in	7 Mar 2005 21:10:46 -0000	1.109
@@ -3,7 +3,7 @@
 
 AC_INIT(dbus/dbus.h)
 
-AM_INIT_AUTOMAKE(dbus, 0.30)
+AM_INIT_AUTOMAKE(dbus, 0.31)
 
 AM_CONFIG_HEADER(config.h)
 
@@ -17,6 +17,18 @@
  ## must come before we use the $USE_MAINTAINER_MODE variable later
 AM_MAINTAINER_MODE
 
+# libtool versioning - this applies to libhal and libhal-storage
+#
+# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
+#
+LT_CURRENT=1
+LT_REVISION=0
+LT_AGE=0
+AC_SUBST(LT_CURRENT)
+AC_SUBST(LT_REVISION)
+AC_SUBST(LT_AGE)
+
+
 AC_PROG_CC
 AC_PROG_CXX
 AC_ISC_POSIX



More information about the dbus-commit mailing list