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:
parent
286f4252ad
commit
04134fa830
5 changed files with 11 additions and 5 deletions
|
@ -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
|
* Handle EOFError raised by Rack and return Bad Request 400 status. [#1743](https://github.com/sinatra/sinatra/pull/1743) by tamazon
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.2.0
|
2.2.1
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Sinatra
|
module Sinatra
|
||||||
VERSION = '2.2.0'
|
VERSION = '2.2.1'
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module Rack
|
module Rack
|
||||||
module Protection
|
module Protection
|
||||||
VERSION = '2.2.0'
|
VERSION = '2.2.1'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module Sinatra
|
module Sinatra
|
||||||
module Contrib
|
module Contrib
|
||||||
VERSION = '2.2.0'
|
VERSION = '2.2.1'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue