Skip to content

Commit

Permalink
Update bip-schnorr, puma, rake, rubocop and rubocop-rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonsilva committed Nov 20, 2023
1 parent 3520cf8 commit 53069a3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ AllCops:
DisplayCopNames: true
NewCops: enable

# ----------------------- Gemspec -----------------------

Gemspec/DevelopmentDependencies:
Enabled: false

# ----------------------- Style -----------------------

Style/RaiseArgs:
Expand Down Expand Up @@ -47,6 +52,10 @@ RSpec/FilePath:
Exclude:
- spec/nostr/errors/invalid_*

RSpec/SpecFilePathFormat:
Exclude:
- spec/nostr/errors/invalid_*

# ----------------------- Naming -----------------------

Naming/MemoizedInstanceVariableName:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ keys and public keys
- Updated the filter's documentation to reflect the removal of prefix matching
- Updated the subscription's id documentation to reflect the changes in the protocol definition
- Updated `Nostr::PrivateKey` and `Nostr::PublicKey` internally, instead of Strings
- Updated the gem `bip-schnorr` to version `0.6` (was `0.4`)
- Updated the gem `puma` to version `6.4` (was `6.3`)
- Updated the gem `rake` to version `13.1` (was `13.0`)
- Updated the gem `rbs` to version `3.3` (was `2.8`)
- Updated the gem `rubocop` to version `1.57` (was `1.42`)
- Updated the gem `rubocop-rspec` to version `2.25` (was `2.16`)
- Updated the gem `steep` to version `1.6` (was `1.4`)

## Fixed
Expand Down
10 changes: 5 additions & 5 deletions nostr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_dependency 'bech32', '~> 1.4'
spec.add_dependency 'bip-schnorr', '~> 0.4'
spec.add_dependency 'bip-schnorr', '~> 0.6'
spec.add_dependency 'ecdsa', '~> 1.2'
spec.add_dependency 'event_emitter', '~> 0.2'
spec.add_dependency 'faye-websocket', '~> 0.11'
Expand All @@ -47,14 +47,14 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'guard-rubocop', '~> 1.5'
spec.add_development_dependency 'overcommit', '~> 0.59'
spec.add_development_dependency 'pry', '~> 0.14'
spec.add_development_dependency 'puma', '~> 6.3'
spec.add_development_dependency 'puma', '~> 6.4'
spec.add_development_dependency 'rack', '~> 3.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'rbs', '~> 3.3'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.add_development_dependency 'rubocop', '~> 1.42'
spec.add_development_dependency 'rubocop', '~> 1.57'
spec.add_development_dependency 'rubocop-rake', '~> 0.6'
spec.add_development_dependency 'rubocop-rspec', '2.16'
spec.add_development_dependency 'rubocop-rspec', '2.25'
spec.add_development_dependency 'simplecov', '= 0.17'
spec.add_development_dependency 'simplecov-console', '~> 0.9'
spec.add_development_dependency 'steep', '~> 1.6'
Expand Down

0 comments on commit 53069a3

Please sign in to comment.