Bump version to 2.2.1

This commit is contained in:
Jordan Owens 2022-04-13 21:07:46 -04:00
parent 286f4252ad
commit 04134fa830
5 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,10 @@
## 2.2.0 / Unrealased
## 2.2.1 / Unreleased
* Fix JRuby regression by using ruby2_keywords for delegation. [#1750](https://github.com/sinatra/sinatra/pull/1750) by Patrik Ragnarsson
* Add JRuby to CI. [#1755](https://github.com/sinatra/sinatra/pull/1755) by Karol Bucek
## 2.2.0 / 2022-02-15
* Handle EOFError raised by Rack and return Bad Request 400 status. [#1743](https://github.com/sinatra/sinatra/pull/1743) by tamazon

View File

@ -1 +1 @@
2.2.0
2.2.1

View File

@ -1,3 +1,3 @@
module Sinatra
VERSION = '2.2.0'
VERSION = '2.2.1'
end

View File

@ -1,5 +1,5 @@
module Rack
module Protection
VERSION = '2.2.0'
VERSION = '2.2.1'
end
end

View File

@ -1,6 +1,6 @@
module Sinatra
module Contrib
VERSION = '2.2.0'
VERSION = '2.2.1'
end
end