Index: trunk/README
===================================================================
--- trunk/README	(revision 43)
+++ trunk/README	(revision 1)
@@ -1,5 +1,4 @@
-MP3::Find version 0.07
+MP3::Find version 0.01
 ======================
-
 DESCRIPTION
     This module allows you to search for MP3 files by their ID3 tags. You
@@ -8,18 +7,4 @@
     formatted string for each file using its ID3 tags, or the actual Perl
     data structure representing the results.
-
-    There are currently two backends to this module: MP3::Find::Filesystem
-    and MP3::Find::DB. You choose which one you want by passing its name as
-    the argument to you "use" statement; MP3::Find will look for a
-    MP3::Find::$BACKEND module. If no backend name is given, it will default
-    to using MP3::Find::Filesystem.
-
-    Note: I'm still working out some kinks in the DB backend, so it is
-    currently not as stable as the Filesystem backend.
-
-    Note the second: This whole project is still in the alpha stage, so I
-    can make no guarentees that there won't be significant interface changes
-    in the next few versions or so. Also, comments about what about the API
-    rocks (or sucks!) are appreciated.
 
 INSTALL
@@ -32,6 +17,5 @@
 
 SYNOPSIS
-        # select with backend you want
-        use MP3::Find qw(Filesystem);
+        use MP3Find;
     
         print "$_\n" foreach find_mp3s(
@@ -42,5 +26,5 @@
             },
             ignore_case => 1,
-            exact_match => 1,
+            match_words => 1,
             sort => [qw(year album tracknum)],
             printf => '%2n. %a - %t (%b: %y)',
@@ -48,10 +32,7 @@
 
 REQUIRES
-    File::Find, MP3::Info, and Scalar::Util are needed for the filesystem
-    backend (MP3::Find::Filesystem). In addition, if MP3::Tag is available,
-    you can search by explicit ID3v2 tag frames.
+    File::Find, MP3::Info, Scalar::Util
 
-    DBI, DBD::SQLite, and SQL::Abstract are needed for the database backend
-    (MP3::Find::DB).
+    DBI and DBD::SQLite are needed if you want to have a database backend.
 
 COPYRIGHT AND LICENSE
