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

Bump version to 3.0.0

This commit is contained in:
Jordan Owens 2022-02-02 16:06:15 -05:00
parent 1f8276ba09
commit c7e851f7d7
5 changed files with 7 additions and 5 deletions

View file

@ -1,4 +1,6 @@
## 2.2.0 / Unrealased ## 3.0.0 / Unreleased
## 2.2.0 / Unreleased
* 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

View file

@ -1 +1 @@
2.2.0 3.0.0

View file

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

View file

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

View file

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