<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,9 @@
+0.10.0
+- Updated for Rack 0.9
+- Added batch URI resolution for resource collections
+- Refactored use of constants
+- Updated documentation
+
 0.9.1
 - Fixed Rack::Lint/rackup errors related to Content-Type headers
 - Patched Rack to support StringIO#string in Rack::Lint::InputWrapper</diff>
      <filename>CHANGES</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-Copyright (c) 2008 Jon Crosby http://joncrosby.me
+Copyright (c) 2008, 2009 Jon Crosby http://joncrosby.me
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>COPYING</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@ An explicit version of example 2, minus the default developer landing page:
   use CloudKit::OAuthFilter
   use CloudKit::OpenIDFilter
   use CloudKit::Service, :collections =&gt; [:notes, :todos]
-  run lambda {|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
+  run lambda {|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}
 
 The same as above, using MySQL:
 
@@ -45,7 +45,7 @@ The same as above, using MySQL:
   use CloudKit::OAuthFilter
   use CloudKit::OpenIDFilter
   use CloudKit::Service, :collections =&gt; [:notes, :todos]
-  run lambda {|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
+  run lambda {|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}
 
 See the examples directory for more.
 
@@ -61,7 +61,7 @@ Source: http://github.com/jcrosby/cloudkit
 
 ===License
 
-Copyright (c) 2008 Jon Crosby http://joncrosby.me
+Copyright (c) 2008, 2009 Jon Crosby http://joncrosby.me
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -2,8 +2,8 @@ Gem::Specification.new do |s|
   s.specification_version = 2 if s.respond_to? :specification_version=
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.name              = &quot;cloudkit&quot;
-  s.version           = &quot;0.9.1&quot;
-  s.date              = &quot;2008-12-31&quot;
+  s.version           = &quot;0.10.0&quot;
+  s.date              = &quot;2008-01-09&quot;
   s.summary           = &quot;An Open Web JSON Appliance.&quot;
   s.description       = &quot;An Open Web JSON Appliance.&quot;
   s.authors           = [&quot;Jon Crosby&quot;]</diff>
      <filename>cloudkit.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -38,6 +38,17 @@ If you haven't already installed the gem:
 &lt;/p&gt;
 
 &lt;p&gt;
+If you already have the gem, make sure you're running the latest version (0.10.0):
+  &lt;div class=&quot;code&quot;&gt;
+    $ gem list cloudkit&lt;br/&gt;
+    cloudkit (0.9.1) &amp;lt;-- need to upgrade&lt;br/&gt;
+    $ gem update cloudkit&lt;br/&gt;
+    $ gem list cloudkit&lt;br/&gt;
+    cloudkit (0.10.0, 0.9.1) &amp;lt;-- 0.10.0 is now in the list
+  &lt;/div&gt;
+&lt;/p&gt;
+
+&lt;p&gt;
 Create a rackup file named config.ru, containing these two lines of code:
   &lt;div class=&quot;code&quot;&gt;
     require 'cloudkit'&lt;br/&gt;</diff>
      <filename>doc/curl.html</filename>
    </modified>
    <modified>
      <diff>@@ -24,7 +24,7 @@
   &lt;/div&gt;
   &lt;div class=&quot;meta&quot;&gt;
     &lt;p class=&quot;wrapper&quot;&gt;
-      Version 0.9.1 &lt;a href=&quot;http://blog.joncrosby.me/post/67644315/cloudkit-0-9-1-released&quot;&gt;released&lt;/a&gt;. Install with &lt;em&gt;gem install cloudkit&lt;/em&gt;.
+      Version 0.10.0 &lt;a href=&quot;http://blog.joncrosby.me&quot;&gt;released&lt;/a&gt;. Install with &lt;em&gt;gem install cloudkit&lt;/em&gt;.
     &lt;/p&gt;
   &lt;/div&gt;
   &lt;div class=&quot;wrapper intro-row&quot;&gt;</diff>
      <filename>doc/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -3,4 +3,4 @@ require 'cloudkit'
 use Rack::Session::Pool
 use CloudKit::OpenIDFilter
 use CloudKit::Service, :collections =&gt; [:notes]
-run lambda{|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
+run lambda{|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}</diff>
      <filename>examples/3.ru</filename>
    </modified>
    <modified>
      <diff>@@ -2,4 +2,4 @@ $:.unshift File.expand_path(File.dirname(__FILE__)) + '/../lib'
 require 'cloudkit'
 use CloudKit::OAuthFilter
 use CloudKit::Service, :collections =&gt; [:notes]
-run lambda{|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
+run lambda{|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}</diff>
      <filename>examples/4.ru</filename>
    </modified>
    <modified>
      <diff>@@ -7,4 +7,4 @@ use Rack::Session::Pool
 use CloudKit::OAuthFilter
 use CloudKit::OpenIDFilter
 use CloudKit::Service, :collections =&gt; [:notes]
-run lambda{|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
+run lambda{|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}</diff>
      <filename>examples/5.ru</filename>
    </modified>
    <modified>
      <diff>@@ -7,4 +7,4 @@ use Rack::Session::Pool
 use CloudKit::OAuthFilter
 use CloudKit::OpenIDFilter
 use CloudKit::Service, :collections =&gt; [:notes]
-run lambda{|env| [200, {'Content-Type' =&gt; 'text/html'}, ['HELLO']]}
\ No newline at end of file
+run lambda{|env| [200, {'Content-Type' =&gt; 'text/html', 'Content-Length' =&gt; '5'}, ['HELLO']]}
\ No newline at end of file</diff>
      <filename>examples/6.ru</filename>
    </modified>
    <modified>
      <diff>@@ -35,6 +35,10 @@ require 'cloudkit/user_store'
 
 include CloudKit::Constants
 
+module CloudKit
+  VERSION = '0.10.0'
+end
+
 class Object
 
   # Execute a method if it exists.</diff>
      <filename>lib/cloudkit.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>72b5c58aa74672007df33ae50cc5cad148dd4e4d</id>
    </parent>
  </parents>
  <author>
    <name>Jon Crosby</name>
    <email>jon@joncrosby.me</email>
  </author>
  <url>http://github.com/jcrosby/cloudkit/commit/3f321e677f4a7d2d043210760629690e244e8ac3</url>
  <id>3f321e677f4a7d2d043210760629690e244e8ac3</id>
  <committed-date>2009-01-09T15:39:05-08:00</committed-date>
  <authored-date>2009-01-09T15:39:05-08:00</authored-date>
  <message>Package for 0.10.0 release</message>
  <tree>87b0dac6622771cda8387621df9ed9ed35b33e90</tree>
  <committer>
    <name>Jon Crosby</name>
    <email>jon@joncrosby.me</email>
  </committer>
</commit>
