Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.2.0 release #1977

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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