2007-06-18 Havoc Pennington <hp@redhat.com>
authorHavoc Pennington <hp@redhat.com>
Mon, 18 Jun 2007 19:49:40 +0000 (19:49 +0000)
committerHavoc Pennington <hp@redhat.com>
Mon, 18 Jun 2007 19:49:40 +0000 (19:49 +0000)
* Release 1.1.1

ChangeLog
NEWS
configure.in

index 81a3c2776cb899c42de664bff00144782291e9d1..065119eef36a86b9b565112b62fc543fd53684af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-06-18  Havoc Pennington  <hp@redhat.com>
+
+       * Release 1.1.1
+
 2007-06-18  Havoc Pennington  <hp@redhat.com>
 
        * doc/dbus-specification.xml: document org.freedesktop.DBus.GetId()
diff --git a/NEWS b/NEWS
index daefed40c26d10ebf3ed251046c2557f5f86de00..4f72cd20e786fcd730289256a6d7e68da185c2a6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,33 @@
+D-Bus 1.1.1 (18 June 2007)
+==
+- This is a development release, unless you need specific 
+  functionality please use the stable releases as API's may change
+  (though we will try hard not to)
+- The bus daemon now generates a globally-unique ID for itself, which is available 
+  using the convenience function dbus_bus_get_id(). Use this as a unique ID 
+  for a user's session, for example.
+- dbus_server_get_id(), dbus_connection_get_server_id() now available to access
+  the unique ID of a particular address
+- dbus_watch_get_fd() deprecated since it had unclear cross-platform semantics.
+  dbus_watch_get_unix_fd() and dbus_watch_get_socket() replace it.
+- support ANONYMOUS mechanism for authentication, which allows a client to 
+  authenticate as nobody in particular
+- add API dbus_connection_set_allow_anonymous() which will allow the message
+  stream to begin if the client auths as anonymous (otherwise, the client 
+  will be dropped unless they auth as a user).
+- the ANONYMOUS support means you can now use D-Bus (without a bus daemon) as 
+  a protocol for a network service provided to anonymous Internet or LAN  
+  clients
+- many internal changes to better support the Windows port, though the 
+  port is still not complete in this release
+- some improved documentation and return_if_fail checks
+- some small bug fixes
+
 D-Bus 1.1.0 (25 May 2007)
 ==
 - first release in the development series, unless you need specific 
   functionality please use the stable releases as API's may change
   (though we will try hard not to)
-- now works on windows thanks to the hard work of the windows porting team
 - better eavesdropping support now picks up reply messages for debugging
 - .pc file now lists the directory the daemon is installed into (daemondir)
 - GetAll call added to the properties interface
index 4bdc535d966b33a31dcd1e9127e696706a47299e..deb788ef1de2e79b37a2295980278f1f75eadc4f 100644 (file)
@@ -25,7 +25,7 @@ AM_MAINTAINER_MODE
 #
 
 ## increment if the interface has additions, changes, removals.
-LT_CURRENT=5
+LT_CURRENT=6
 
 ## increment any time the source changes; set to
 ##  0 if you increment CURRENT
@@ -34,7 +34,7 @@ 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=2
+LT_AGE=3
 
 AC_SUBST(LT_CURRENT)
 AC_SUBST(LT_REVISION)