Index: trunk/Nebulous/Changes
===================================================================
--- trunk/Nebulous/Changes	(revision 16225)
+++ trunk/Nebulous/Changes	(revision 16226)
@@ -1,3 +1,9 @@
 Revision history for Nebulous
+
+0.07
+    - change Nebulous::Client::find_objects() to return undef instead of [] if
+      no objects are found
+    - change neb-touch to use Nebulous::Client::find_objects() instead of
+      ::find()
 
 0.06 Thu Jan 24 16:10:46 HST 2008
Index: trunk/Nebulous/lib/Nebulous/Client.pm
===================================================================
--- trunk/Nebulous/lib/Nebulous/Client.pm	(revision 16225)
+++ trunk/Nebulous/lib/Nebulous/Client.pm	(revision 16226)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004  Joshua Hoblitt
 #
-# $Id: Client.pm,v 1.35 2007-05-08 02:27:42 jhoblitt Exp $
+# $Id: Client.pm,v 1.36 2008-01-25 02:46:41 jhoblitt Exp $
 
 package Nebulous::Client;
@@ -423,5 +423,5 @@
 # behavior of this function is different then it's ::Server counter part
 
-    return $keys;
+    return length @$keys ? $keys : undef;
 }
 
