Skip to content

Commit

Permalink
3.2.0 release (#1977)
Browse files Browse the repository at this point in the history
Close #1962
  • Loading branch information
dentarg committed Dec 29, 2023
1 parent 3b75657 commit 4e8fdb5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

* _Your new feature here._

## 3.2.0 / 2023-12-29

* New: Add `#except` method to `Sinatra::IndifferentHash` ([#1940])

* New: Use `Exception#detailed_message` to show backtrace ([#1952])

* New: Add `Sinatra::HamlHelpers` to sinatra-contrib ([#1960])

* Fix: Add `base64` to rack-protection runtime dependencies ([#1946])

* Fix: Avoid open-ended dependencies for sinatra-contrib and rack-protection ([#1949])

* Fix: Helpful message when `Sinatra::Runner` times out ([#1975])

* Fix: Ruby 3.3 + Bundler 2.5 compatibility ([#1975])

[#1940]: https://github.com/sinatra/sinatra/pull/1940
[#1946]: https://github.com/sinatra/sinatra/pull/1946
[#1949]: https://github.com/sinatra/sinatra/pull/1949
[#1952]: https://github.com/sinatra/sinatra/pull/1952
[#1960]: https://github.com/sinatra/sinatra/pull/1960
[#1975]: https://github.com/sinatra/sinatra/pull/1960

## 3.1.0 / 2023-08-07

* New: Add sass support via sass-embedded [#1911] by なつき
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.2.0
2 changes: 1 addition & 1 deletion lib/sinatra/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Sinatra
VERSION = '3.1.0'
VERSION = '3.2.0'
end
2 changes: 1 addition & 1 deletion rack-protection/lib/rack/protection/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Rack
module Protection
VERSION = '3.1.0'
VERSION = '3.2.0'
end
end
2 changes: 1 addition & 1 deletion sinatra-contrib/lib/sinatra/contrib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Sinatra
module Contrib
VERSION = '3.1.0'
VERSION = '3.2.0'
end
end

0 comments on commit 4e8fdb5

Please sign in to comment.