3.0.5 release

This commit is contained in:
Jordan Owens 2022-12-16 18:13:16 -05:00
parent 0b2c3a7c5a
commit 186106d153
5 changed files with 10 additions and 4 deletions

View File

@ -2,6 +2,12 @@
* _Your new feature here._
## 3.0.5 / 2022-12-16
* Fix: Add Zeitwerk compatibility. [#1831](https://github.com/sinatra/sinatra/pull/1831) by Dawid Janczak
* Fix: Allow CALLERS_TO_IGNORE to be overridden
## 3.0.4 / 2022-11-25
* Fix: Escape filename in the Content-Disposition header. [#1841](https://github.com/sinatra/sinatra/pull/1841) by Kunpei Sakai

View File

@ -1 +1 @@
3.0.4
3.0.5

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Sinatra
VERSION = '3.0.4'
VERSION = '3.0.5'
end

View File

@ -2,6 +2,6 @@
module Rack
module Protection
VERSION = '3.0.4'
VERSION = '3.0.5'
end
end

View File

@ -2,6 +2,6 @@
module Sinatra
module Contrib
VERSION = '3.0.4'
VERSION = '3.0.5'
end
end