Skip to content

Commit

Permalink
Merge branch 'resque:master' into fix-gethostbyaddr-deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
irvingreid authored Oct 13, 2022
2 parents 5e8953b + e37f5dd commit d8c4b73
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

**ATTN**: This project uses [semantic versioning](http://semver.org/).

## [4.7.0] - 2022-10-6
### Fixed
- Fix tests for redis-rb 5.0 (#757)
- Use Resque::DataStore#reconnect for redis-rb 5.0 compat (#757)
- Test suite runs `flushall` to prevent flakiness (#757)

## [4.6.0] - 2022-08-04
### Changed
- Remove support for Ruby < 2.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ following task to wherever tasks are kept, such as
```ruby
task 'resque:pool:setup' do
Resque::Pool.after_prefork do |job|
Resque.redis._client.reconnect
Resque.redis.reconnect
end
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/resque/scheduler/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Resque
module Scheduler
VERSION = '4.6.0'.freeze
VERSION = '4.7.0'.freeze
end
end

0 comments on commit d8c4b73

Please sign in to comment.