Prepping for release 0.50
adam [Sat, 7 Jul 2007 20:08:01 +0000 (20:08 +0000)]
README
lib/Catalyst/Action/REST.pm

diff --git a/README b/README
index 172ac8e..4647747 100644 (file)
--- a/README
+++ b/README
@@ -135,6 +135,15 @@ AVAILABLE SERIALIZERS
 
         { data => $yourdata }
 
+    View
+      Uses a regular Catalyst view. For example, if you wanted to have your
+      "text/html" and "text/xml" views rendered by TT:
+
+              'text/html' => [ 'View', 'TT' ],
+              'text/xml'  => [ 'View', 'XML' ],
+        
+      Will do the trick nicely.
+
     By default, Catalyst::Controller::REST will return a "415 Unsupported
     Media Type" response if an attempt to use an unsupported content-type is
     made. You can ensure that something is always returned by setting the
@@ -260,8 +269,7 @@ IMPLEMENTATION DETAILS
         ],
                     'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ]
         ,
-                    'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serializat
-        ion' ],
+                    'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ],
                   },
               }
           );
index d787fec..b07d1c1 100644 (file)
@@ -16,7 +16,7 @@ use Catalyst::Request::REST;
 use 5.8.1;
 
 our
-   $VERSION = '0.41';
+   $VERSION = '0.50';
 
 # This is wrong in several ways. First, there's no guarantee that
 # Catalyst.pm has not been subclassed. Two, there's no guarantee that