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 67ff10d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
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
9 changes: 7 additions & 2 deletions sentry-delayed_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ platform :jruby do
gem "jdbc-sqlite3"
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 67ff10d

Please sign in to comment.