Skip to content

Commit

Permalink
Prep for 5.0 release (#218)
Browse files Browse the repository at this point in the history
* Add in ruby 3.3 & reorder so new rubies are first

* We should be using the latest version

* Bump to major version
  • Loading branch information
wspurgin committed May 15, 2024
1 parent 865e45c commit 5becc96
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
strategy:
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.3'
- '3.2'
- '3.1'
- '3.0'
- '2.7'
gemfile:
- 'Gemfile'
- 'gemfiles/sidekiq5_rails6.gemfile'
Expand All @@ -36,10 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up using Ruby ${{ matrix.ruby-version }} with Gemfile '${{ matrix.gemfile }}'
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Unreleased
---

5.0.0
---
* [BREAKING] Make `have_enqueued_sidekiq_job()` match jobs with any arguments (same as `enqueue_sidekiq_job()` or `have_enqueued_sidekiq_job(any_args)`) (#215)
* Add support for expected number of jobs to both `enqueue_sidekiq_job` and `have_enqueued_sidekiq_job` (#219)

Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/sidekiq/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RSpec
module Sidekiq
VERSION = "4.2.0"
VERSION = "5.0.0"
end
end

0 comments on commit 5becc96

Please sign in to comment.