summary refs log tree commit
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2009-03-25 14:41:36 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2009-03-25 14:41:36 +0100
commit93b22c069f587a9c906dbca6ccc771b137f19f2f (patch)
treee58cb8f181ffc8cbff3f83817bb2302952f3834b
parent35f5aaebe84db708d5105b2e68758065b1202bd4 (diff)
downloadrack-93b22c069f587a9c906dbca6ccc771b137f19f2f.tar.gz
Push version numbers
-rw-r--r--lib/rack.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rack.rb b/lib/rack.rb
index 987744f4..f92c2be2 100644
--- a/lib/rack.rb
+++ b/lib/rack.rb
@@ -14,7 +14,7 @@ $: << File.expand_path(File.dirname(__FILE__))
 
 module Rack
   # The Rack protocol version number implemented.
-  VERSION = [0,1]
+  VERSION = [1,0]
 
   # Return the Rack protocol version as a dotted string.
   def self.version
@@ -23,7 +23,7 @@ module Rack
 
   # Return the Rack release as a dotted string.
   def self.release
-    "0.4"
+    "1.0"
   end
 
   autoload :Builder, "rack/builder"