Skip to content

Commit

Permalink
Change Sidekiq requirement to ~> 6.5
Browse files Browse the repository at this point in the history
The current version range allows Sidekiq 7.0.0.beta1 for some reason (RubyGems' versioning presumably thinks 7.0.0.beta1 < 7.0.0).
  • Loading branch information
robinjam committed Oct 24, 2023
1 parent 51ee6c3 commit a87599f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased

* Fix Sidekiq requirement to ~> 6.5 so that Bundler won't install v7.0.0.beta1

# 7.1.2

* Allow newer non-major versions of Sidekiq
Expand Down
2 changes: 1 addition & 1 deletion govuk_sidekiq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "gds-api-adapters", ">= 19.1.0"
spec.add_dependency "govuk_app_config", ">= 1.1"
spec.add_dependency "redis-namespace", "~> 1.6"
spec.add_dependency "sidekiq", ">= 6.5.12", "< 7"
spec.add_dependency "sidekiq", "~> 6.5"

spec.add_development_dependency "climate_control", "~> 1.2"
spec.add_development_dependency "railties", "~> 7"
Expand Down

0 comments on commit a87599f

Please sign in to comment.