File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1+ == 1.7.0 Dunder Mifflin
2+ * Rack 2 support
3+ * Ensure Response body.close is called in the same thread
4+ Fixes issues with ActiveRecord connection management [#307]
5+ * Fix TCP/IP Backend reports incorrect port when asked to bind to 0 [meschbach]
6+ * Work with ruby 2.3's --enable-frozen-string-literal [jeremyevans]
7+
18== 1.6.4 Gob Bluth
29 * Increase REQUEST_PATH to 2048 symbols [X2rdas]
310 * Fix warning in logger [tenderlove]
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ class PlatformNotSupported < RuntimeError; end
55
66 module VERSION #:nodoc:
77 MAJOR = 1
8- MINOR = 6
9- TINY = 4
8+ MINOR = 7
9+ TINY = 0
1010
1111 STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
1212
13- CODENAME = "Gob Bluth " . freeze
13+ CODENAME = "Dunder Mifflin " . freeze
1414
1515 RACK = [ 1 , 0 ] . freeze # Rack protocol version
1616 end
You can’t perform that action at this time.
0 commit comments