Skip to content

Commit

Permalink
Merge pull request #9 from trusted/publish-to-rubygems
Browse files Browse the repository at this point in the history
chore: update changelog
  • Loading branch information
gustavodiel authored Oct 28, 2024
2 parents ae9f590 + c473880 commit 95ebb96
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@
/spec/reports/
/tmp/

*.gem

# rspec failure tracking
.rspec_status
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## [Unreleased]
## [0.3.0] - 2024-10-28

- Fix: error when retry_count is 0
- Change: Support push to Rubygems

## [0.1.0] - 2024-07-02

Expand Down
17 changes: 7 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ PATH
remote: .
specs:
sidekiq-silent-retry (0.2.0)
sidekiq (>= 6.0)
sidekiq (~> 6.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
concurrent-ruby (1.3.1)
connection_pool (2.4.1)
diff-lcs (1.5.1)
json (2.7.2)
Expand All @@ -18,11 +17,10 @@ GEM
ast (~> 2.4.1)
racc
racc (1.8.0)
rack (3.0.11)
rack (2.2.9)
rainbow (3.1.1)
rake (13.2.1)
redis-client (0.22.2)
connection_pool
redis (4.8.1)
regexp_parser (2.9.2)
rexml (3.2.8)
strscan (>= 3.0.9)
Expand Down Expand Up @@ -53,11 +51,10 @@ GEM
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
sidekiq (7.2.4)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.19.0)
sidekiq (6.5.12)
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
strscan (3.1.0)
unicode-display_width (2.5.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/sidekiq/silent_retry/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Sidekiq
module SilentRetry
VERSION = "0.2.0"
VERSION = "0.3.0"
end
end
3 changes: 1 addition & 2 deletions sidekiq-silent-retry.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/trusted/sidekiq-silent-retry/blob/main/CHANGELOG.md"

# Specify which files should be added to the gem when it is released.
Expand All @@ -34,5 +33,5 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency 'sidekiq', '>= 6.0'
spec.add_dependency 'sidekiq', '~> 6.0'
end

0 comments on commit 95ebb96

Please sign in to comment.