Skip to content

Commit

Permalink
Permit versions of dependencies that work with Ruby 2.7 (#492)
Browse files Browse the repository at this point in the history
Turns out these minor version bumps have breaking changes 😳
- activesupport < 7.2
- minitar < 1.0
- rdf < 3.3
- rdf-n3 < 3.3
  • Loading branch information
pgwillia authored Nov 27, 2024
1 parent 9d117d7 commit 557fc65
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and releases in PushmiPullyu adheres to [Semantic Versioning](https://semver.org

## [Unreleased]

### Fixed
- Permit versions of dependencies that work with Ruby 2.7

## [2.1.4]

### Added
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ PATH
remote: .
specs:
pushmi_pullyu (2.1.4)
activesupport (>= 5, < 8)
activesupport (>= 5, < 7.2)
bagit (~> 0.4)
connection_pool (~> 2.2)
daemons (~> 1.2, >= 1.2.4)
minitar (>= 0.7, < 2.0)
minitar (>= 0.7, < 1.0)
openstack (~> 3.3, >= 3.3.10)
rdf (>= 1.99, < 4.0)
rdf-n3 (>= 1.99, < 4.0)
rdf (>= 1.99, < 3.3)
rdf-n3 (>= 1.99, < 3.3)
redis (>= 3.3, < 6.0)
rest-client (>= 1.8, < 3.0)
rollbar (>= 2.18, < 4.0)
Expand Down
8 changes: 4 additions & 4 deletions pushmi_pullyu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.7'

spec.add_dependency 'activesupport', '>= 5', '< 8'
spec.add_dependency 'activesupport', '>= 5', '< 7.2'
spec.add_dependency 'bagit', '~> 0.4'
spec.add_dependency 'connection_pool', '~> 2.2'
spec.add_dependency 'daemons', '~> 1.2', '>= 1.2.4'
spec.add_dependency 'minitar', '>= 0.7', '< 2.0'
spec.add_dependency 'minitar', '>= 0.7', '< 1.0'
spec.add_dependency 'openstack', '~> 3.3', '>= 3.3.10'
spec.add_dependency 'rdf', '>= 1.99', '< 4.0'
spec.add_dependency 'rdf-n3', '>= 1.99', '< 4.0'
spec.add_dependency 'rdf', '>= 1.99', '< 3.3'
spec.add_dependency 'rdf-n3', '>= 1.99', '< 3.3'
spec.add_dependency 'redis', '>= 3.3', '< 6.0'
spec.add_dependency 'rest-client', '>= 1.8', '< 3.0'
spec.add_dependency 'rollbar', '>= 2.18', '< 4.0'
Expand Down

0 comments on commit 557fc65

Please sign in to comment.