summary refs log tree commit
diff options
context:
space:
mode:
authorJames Tucker <jftucker@gmail.com>2011-12-27 22:28:10 -0400
committerJames Tucker <jftucker@gmail.com>2011-12-27 22:28:10 -0400
commit44cbb9a570f0b31ad6b0d6ee6e0e405843b65385 (patch)
treed3e25dc2109763c7741667aa2797ac56f483dba5
parent09c5e53f11a491c25bef873ed146842f3cd03228 (diff)
downloadrack-44cbb9a570f0b31ad6b0d6ee6e0e405843b65385.tar.gz
Bump version, and add release notes 1.1.3
-rw-r--r--README4
-rw-r--r--lib/rack.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/README b/README
index 95d3c544..a73a83aa 100644
--- a/README
+++ b/README
@@ -317,6 +317,10 @@ run on port 11211) and memcache-client installed.
   * Security fix in Rack::Auth::Digest::MD5: when authenticator
     returned nil, permission was granted on empty password.
 
+* December 28th, 2011: Twenty first public release: 1.1.3.
+  * Security fix. http://www.ocert.org/advisories/ocert-2011-003.html
+    Further information here: http://jruby.org/2011/12/27/jruby-1-6-5-1
+
 == Contact
 
 Please post bugs, suggestions and patches to
diff --git a/lib/rack.rb b/lib/rack.rb
index b8ea2f12..527f445e 100644
--- a/lib/rack.rb
+++ b/lib/rack.rb
@@ -20,7 +20,7 @@ module Rack
 
   # Return the Rack release as a dotted string.
   def self.release
-    "1.1.2"
+    "1.1.3"
   end
 
   autoload :Builder, "rack/builder"