about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-26 21:26:03 +0000
committerEric Wong <normalperson@yhbt.net>2010-10-26 21:26:03 +0000
commita47cd4a7f392a76357ed4f3e458797ae1f9c8f25 (patch)
treee39ccb3f195ff43887d4a45a831f3a0545c22c8a
parent0298a6743f2cadf8c8e47a298c5b35505b74af46 (diff)
downloadrainbows-1.0.0pre1.tar.gz
Mostly internal changes for kgio (and Unicorn) integration.
There should be no (supported) user-visible changes from
Rainbows! 0.97.0.  kgio should improve performance for
concurrency models that use non-blocking I/O internally,
especially under Ruby 1.9.2
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--GNUmakefile2
-rw-r--r--lib/rainbows/const.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 1e6f505..75fc0ab 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.97.0.GIT
+DEF_VER=v1.0.0pre1.GIT
 
 LF='
 '
diff --git a/GNUmakefile b/GNUmakefile
index cfb46f5..f3ececc 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -62,7 +62,7 @@ NEWS: GIT-VERSION-FILE
         $(RAKE) -s news_rdoc > $@+
         mv $@+ $@
 
-SINCE = 0.96.0
+SINCE = 0.97.0
 ChangeLog: LOG_VERSION = \
   $(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
           echo $(GIT_VERSION) || git describe)
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index ecdafab..e8265f6 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -2,7 +2,7 @@
 # :enddoc:
 module Rainbows::Const
 
-  RAINBOWS_VERSION = '0.97.0'
+  RAINBOWS_VERSION = '1.0.0pre1'
 
   include Unicorn::Const