Skip to content

Commit

Permalink
Bump version to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
wspurgin committed Aug 15, 2023
1 parent b4851ac commit bdd2b52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Unreleased - 4.0.0
4.0.0
---
* [BREAKING] Dropped support for matching jobs on ActiveJob's private API args, (e.g. `_aj_globalid` and `_aj_ruby2_keywords`). `_aj_globalid` can be replaced with the object itself, e.g. `have_enqueued_sidekiq_job(user)`.
* [BREAKING] Dropped support for Ruby 2.6
Expand All @@ -10,6 +10,7 @@ Unreleased - 4.0.0
* Add support for builtin argument matchers from rspec mocks for
`have_enqueued_sidekiq_job` (#200)
* Add `#on` to `have_enqueued_sidekiq_job` to support testing queue at enqueue time (#197)
* Add `enqueue_sidekiq_job` for block-syntax style expectations
* Clarified `have_enqueued_sidekiq_job` error message to make it clear that the "actual arguments" list is an array of argument-lists across all enqueued jobs. (#195)
* Fix `in` and `at` evaluation to match Sidekiq (#194)
* Fix `be_delayed` argument matcher (#196)
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.0.0.pre"
VERSION = "4.0.0"
end
end

0 comments on commit bdd2b52

Please sign in to comment.