Skip to content

Commit 2774bfc

Browse files
committed
prepare for 1.1.21
1 parent 714fee2 commit 2774bfc

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

History.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.1.21 (17/09/17)
2+
3+
- update (bundled) rack to 1.6.8
4+
- add Rack::Handler::Servlet::DefaultEnv#get_header (#212)
5+
missing methods to handle ActionController::Base#reset_session
6+
- can only safely stream natively on ActionDispatch <= 3.2 (#210)
7+
(broken Rails streaming for Rails 4.x)
8+
- when handling OPTION calls ignore both 'Date' and 'Allow' headers (#205)
9+
110
## 1.1.20 (22/01/16)
211

312
- pre-maturely avoid Ruby frozen string literals coming at us ... ''.dup meh!

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>org.jruby.rack</groupId>
1212
<artifactId>jruby-rack</artifactId>
13-
<version>1.1.21-SNAPSHOT</version>
13+
<version>1.1.21</version>
1414
<name>JRuby-Rack</name>
1515
<url>http://github.com/jruby/jruby-rack/</url>
1616
<description>

src/main/ruby/jruby/rack/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#--
2-
# Copyright (c) 2012-2016 Karol Bucek, LTD.
2+
# Copyright (c) 2012-2017 Karol Bucek, LTD.
33
# Copyright (c) 2010-2012 Engine Yard, Inc.
44
# Copyright (c) 2007-2009 Sun Microsystems, Inc.
55
# This source code is available under the MIT license.
@@ -8,6 +8,6 @@
88

99
module JRuby
1010
module Rack
11-
VERSION = '1.1.21.SNAPSHOT'
11+
VERSION = '1.1.21'
1212
end
1313
end

0 commit comments

Comments
 (0)