mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Bump version to 2.2.0
This commit is contained in:
parent
759a8eb21e
commit
44ce685218
5 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
## 2.2.0 / Unrealased
|
||||
|
||||
* Handle EOFError raised by Rack and return Bad Request 400 status. [#1743](https://github.com/sinatra/sinatra/pull/1743) by tamazon
|
||||
|
||||
* Update README.es.md with removal of Thin. [#1630](https://github.com/sinatra/sinatra/pull/1630) by Espartaco Palma
|
||||
|
||||
* Minor refactors in `base.rb`. [#1640](https://github.com/sinatra/sinatra/pull/1640) by ceclinux
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.1.0
|
||||
2.2.0
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Sinatra
|
||||
VERSION = '2.1.0'
|
||||
VERSION = '2.2.0'
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module Rack
|
||||
module Protection
|
||||
VERSION = '2.1.0'
|
||||
VERSION = '2.2.0'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module Sinatra
|
||||
module Contrib
|
||||
VERSION = '2.1.0'
|
||||
VERSION = '2.2.0'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue