Skip to content

Commit

Permalink
prepare for 1.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Sep 17, 2017
1 parent 714fee2 commit 2774bfc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 1.1.21 (17/09/17)

- update (bundled) rack to 1.6.8
- add Rack::Handler::Servlet::DefaultEnv#get_header (#212)
missing methods to handle ActionController::Base#reset_session
- can only safely stream natively on ActionDispatch <= 3.2 (#210)
(broken Rails streaming for Rails 4.x)
- when handling OPTION calls ignore both 'Date' and 'Allow' headers (#205)

## 1.1.20 (22/01/16)

- pre-maturely avoid Ruby frozen string literals coming at us ... ''.dup meh!
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jruby.rack</groupId>
<artifactId>jruby-rack</artifactId>
<version>1.1.21-SNAPSHOT</version>
<version>1.1.21</version>
<name>JRuby-Rack</name>
<url>http://github.com/jruby/jruby-rack/</url>
<description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/ruby/jruby/rack/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#--
# Copyright (c) 2012-2016 Karol Bucek, LTD.
# Copyright (c) 2012-2017 Karol Bucek, LTD.
# Copyright (c) 2010-2012 Engine Yard, Inc.
# Copyright (c) 2007-2009 Sun Microsystems, Inc.
# This source code is available under the MIT license.
Expand All @@ -8,6 +8,6 @@

module JRuby
module Rack
VERSION = '1.1.21.SNAPSHOT'
VERSION = '1.1.21'
end
end

0 comments on commit 2774bfc

Please sign in to comment.