<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,18 +1,27 @@
 == 0.9.4
 
-- Upgrade to Rack 0.9.1
-- EXPERIMENTAL: Detect Rails 2.3 rack machinery and dispatch to it
-  rather than the legacy CGI shim.
-- EXPERIMENTAL: Beginnings of a JMS API (more details to come)
-- REMOVAL: All the goldspike compatibility bits have been removed. You
-  should upgrade your application to use a web.xml similar to what
-  comes with Warbler.
+- Upgrade bundled Rack version to 0.9.1
+- Introduce RackLogger, defaults to log to servlet context but can be
+  made to point to stdout by setting -Djruby.rack.logging=stdout (for
+  Google AppEngine)
+- Detect Rails 2.3 rack machinery and dispatch to it rather than the
+  legacy CGI shim.
+- TODO: Still missing a java servlet Rack::Session adapter for Rails
+  2.3. Should have it for next release.
+- Update example Rails application to Rails 2.3.2, include bits for
+  deployment to Google AppEngine using Warbler.
 - RackApplication-related core Java classes have been insulated from
   the servlet API, so that (parts of) JRuby-Rack can be used outside
   of a servlet container. If your application or library is coupled to
   these classes, you'll likely be broken with this release. See Nick
   for details.
 - Fix TLD to be more compatible (Fred McHale).
+- Switched main code repository to kenai.com. Github.com still
+  available as a mirror and for forking.
+- EXPERIMENTAL: Beginnings of a JMS API (more details to come)
+- REMOVAL: All the goldspike compatibility bits have been removed. You
+  should upgrade your application to use a web.xml similar to what
+  comes with Warbler.
 
 == 0.9.3
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 #--
 # The MIT License
 #
-# Copyright (c) 2007-2008 Sun Microsystems, Inc.
+# Copyright (c) 2007-2009 Sun Microsystems, Inc.
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the &quot;Software&quot;), to deal
@@ -20,4 +20,4 @@
 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 # THE SOFTWARE.
-#++
\ No newline at end of file
+#++</diff>
      <filename>LICENSE.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+= JRuby-Rack
+
+- http://jruby-rack.kenai.com/
+
 JRuby-Rack is a lightweight adapter for the Java servlet environment
 that allows any Rack-based application to run unmodified in a Java
 servlet container. JRuby-Rack supports Rails, Merb, as well as any
@@ -55,7 +59,7 @@ every request.
 
 Checkout the JRuby Rack code and cd to that directory.
 
-  git clone git://github.com/nicksieger/jruby-rack.git
+  git clone git://kenai.com/jruby-rack~main jruby-rack
   cd jruby-rack
   
 You can choose to build with either Maven or Rake. Either of the
@@ -66,17 +70,6 @@ following two will suffice (but see the NOTE below).
 
 The generated jar should be located here: target/jruby-rack-*.jar.
 
-NOTE: There was a bug in JRuby's java integration code in the 1.1.4
-and 1.1.5 releases that prevent the specs from running cleanly. If
-you're building JRuby-Rack with one of those versions of JRuby, you'll
-need to skip running the specs as follows:
-
-  mvn install -Dmaven.test.skip
-  jruby -S rake SKIP_SPECS=true
-
-If you build with JRuby &lt;= 1.1.3 or JRuby &gt;= 1.1.6, the specs should
-run clean.
-
 == Rails Step-by-step
 
 This example shows how to create and deploy a simple Rails app using</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,3 @@
-- Add ability to specify custom Rack middleware for Rails
 - Get rid of RackApplicationFactory; make custom factories just a decorating RackApplication instead
   - Move JRuby runtime factory logic into separate small factory that accepts a rackup script
 - Introduce application bootstrap strategy concept</diff>
      <filename>TODO</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;groupId&gt;org.jruby.rack&lt;/groupId&gt;
   &lt;artifactId&gt;jruby-rack&lt;/artifactId&gt;
-  &lt;version&gt;0.9.4-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;0.9.4&lt;/version&gt;
   &lt;name&gt;JRuby-Rack&lt;/name&gt;
   &lt;url&gt;http://jruby-rack.kenai.com/&lt;/url&gt;
   &lt;description&gt;</diff>
      <filename>pom.xml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/DefaultRackApplication.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/DefaultRackApplicationFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/PoolingRackApplicationFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackApplication.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackApplicationFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackEnvironment.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackFilter.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackInitializationException.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackResponse.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackResponseEnvironment.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackServlet.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/RackServletContextListener.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/SharedRackApplicationFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/jms/QueueContextListener.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/jms/QueueManager.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/jms/QueueManagerFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/rails/RailsRackApplicationFactory.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/rails/RailsServletContextListener.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/servlet/DefaultServletDispatcher.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/servlet/ServletDispatcher.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/servlet/ServletRackContext.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/servlet/ServletRackEnvironment.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 /*
- * Copyright 2007-2008 Sun Microsystems, Inc.
+ * Copyright 2007-2009 Sun Microsystems, Inc.
  * This source code is available under the MIT license.
  * See the file LICENSE.txt for details.
  */</diff>
      <filename>src/main/java/org/jruby/rack/servlet/ServletRackResponseEnvironment.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/app_layout.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/boot/merb.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/boot/rack.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/boot/rails.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/errors.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/merb.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/merb_servlet_session.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++
@@ -37,4 +37,4 @@ module Rails
       class &lt;&lt; self; remove_method :method_added; end
     end
   end
-end
\ No newline at end of file
+end</diff>
      <filename>src/main/ruby/jruby/rack/rails_boot.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/response.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/servlet_ext.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/servlet_log.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/jruby/rack/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/rack/adapter/rails.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/rack/adapter/rails_cgi.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/main/ruby/rack/handler/servlet.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++
@@ -172,4 +172,4 @@ describe CGI::Session::JavaServletStore do
       @dbman.generate_digest(&quot;key&quot;).should == hmac(&quot;abc123&quot;, &quot;key&quot;)
     end
   end
-end
\ No newline at end of file
+end</diff>
      <filename>src/spec/ruby/cgi/session/java_servlet_store_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/jruby/rack/custom_bootstrap.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/jruby/rack/errors_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/jruby/rack/response_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++
@@ -59,4 +59,4 @@ describe Java::JavaxServletHttp::HttpSession do
     @session.should_receive(:getAttributeNames).and_return names
     @session.keys.should == names
   end
-end
\ No newline at end of file
+end</diff>
      <filename>src/spec/ruby/jruby/rack/servlet_ext_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/jruby/rack/servlet_helper_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/adapter/rails_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/application_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/dispatcher_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++
@@ -101,4 +101,4 @@ describe RackFilter do
     @response.should_receive(:setStatus).ordered.with(200)
     @filter.doFilter(@request, @response, @chain)
   end
-end
\ No newline at end of file
+end</diff>
      <filename>src/spec/ruby/rack/filter_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/handler/servlet_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/jms_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/rails/rails_application_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rack/servlet_context_listener_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #--
-# Copyright 2007-2008 Sun Microsystems, Inc.
+# Copyright 2007-2009 Sun Microsystems, Inc.
 # This source code is available under the MIT license.
 # See the file LICENSE.txt for details.
 #++</diff>
      <filename>src/spec/ruby/rails/action_controller.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bef31e797f392193cfd70d8fd04be07a149c2a31</id>
    </parent>
  </parents>
  <author>
    <name>Nick Sieger</name>
    <email>nick@nicksieger.com</email>
  </author>
  <url>http://github.com/nicksieger/jruby-rack/commit/70a6f1cf99055d907016cce4ad079275ddd543ed</url>
  <id>70a6f1cf99055d907016cce4ad079275ddd543ed</id>
  <committed-date>2009-04-10T18:35:21-07:00</committed-date>
  <authored-date>2009-04-10T18:35:21-07:00</authored-date>
  <message>Update documentation, history, and version for 0.9.4

Also update copyright headers for 2009</message>
  <tree>a18a8ad19b6c4ae08912a166dff0ef8c629cce81</tree>
  <committer>
    <name>Nick Sieger</name>
    <email>nick@nicksieger.com</email>
  </committer>
</commit>
