Skip to content

Commit

Permalink
Prep for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
rwojsznis committed Feb 7, 2024
1 parent 3db1099 commit 70b1963
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.7.0 (Feb 7, 2024)

- support for Sidekiq 7.2 (thanks for the issue report [9mm](https://github.com/9mm))
- dropped support for Sidekiq 5 and older [as it reached EOL](https://github.com/sidekiq/sidekiq/wiki/Commercial-Support#version-policy)
- removed `redis` as gem dependency (relying on sidekiq version you're using to choose the right one)

## 0.6.0 (May 27, 2023)

- support for Sidekiq 7 (thanks to [@stympy](https://github.com/stympy))
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ group :test do
end

gem "appraisal"

2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013 Rafal Wojsznis
Copyright (c) 2024 Rafal Wojsznis

MIT License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ time - it provides a `lock` method that you can use in whatever way you want.

This gem requires at least:
- redis 2.6.12
- redis-rb 3.0.5 (support for extended SET method)
- sidekiq 6

Add this line to your application's Gemfile:

Expand Down
3 changes: 1 addition & 2 deletions sidekiq-lock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ Gem::Specification.new do |spec|
spec.test_files = Dir["test/**/*"]
spec.require_paths = ["lib"]

spec.add_dependency "sidekiq", ">= 2.14.0"
spec.add_dependency "redis", ">= 3.0.5"
spec.add_dependency "sidekiq", ">= 6"
end

0 comments on commit 70b1963

Please sign in to comment.