public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Rename version 0.5.5 to 0.6.0. Lots of big improvements, lets make it a 
'major' release! yeah!
macournoyer (author)
Fri Jan 25 08:07:14 -0800 2008
commit  31af2a1bad84a0fef05e5be2d0dde9fe3cf76925
tree    179c43c2f744b3e8fb547c4300a9eb69bfa39499
parent  58a9c60904298508d2098d5b2cc581a4c2cc503e
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-== 0.5.5 Pony release
0
+== 0.6.0 Big Pony release
0
  * Add support for connection through UNIX domain socket.
0
    Use the --socket (-S) option w/ the thin script to configure the socket filename.
0
    Nginx support binding to a UNIX socket like this:
...
1
2
3
4
5
 
 
6
7
8
9
 
10
11
...
1
2
3
 
 
4
5
6
7
8
 
9
10
11
0
@@ -1,12 +1,12 @@
0
 module Thin
0
   module VERSION #:nodoc:
0
     MAJOR = 0
0
- MINOR = 5
0
- TINY = 5
0
+ MINOR = 6
0
+ TINY = 0
0
     
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
     
0
- CODENAME = 'Pony'
0
+ CODENAME = 'Big Pony'
0
   end
0
 end

Comments

    No one has commented yet.