1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

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