Skip to content

Commit

Permalink
Prepare changelog for 5.18.1
Browse files Browse the repository at this point in the history
Also fix sqlite3 delayed_job CI
  • Loading branch information
sl0thentr0py committed Jul 2, 2024
1 parent 653b06f commit 1aaba6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 5.18.1

### Bug Fixes

Expand Down
8 changes: 8 additions & 0 deletions sentry-delayed_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,12 @@ end
# 1.7.0 dropped support for ruby < 3.0, remove later after upgrading craft setup
gem "sqlite3", "1.6.9", platform: :ruby

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.5.0")
gem "sqlite3", "~> 1.3.0", platform: :ruby
elsif Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
gem "sqlite3", "~> 1.7.3", platform: :ruby
else
gem "sqlite3", "~> 1.6.9", platform: :ruby
end

eval_gemfile File.expand_path("../Gemfile", __dir__)

0 comments on commit 1aaba6a

Please sign in to comment.