Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade activesupport #29

Merged
merged 4 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ coverage/
.env.*
!.env.example
!.env.travis
.ruby-version
25 changes: 13 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
orcid_client (0.10.1)
activesupport (>= 4.2.5, < 6)
orcid_client (0.11.0)
activesupport (>= 6, < 7)
bolognese (~> 2.1.0)
builder (~> 3.2, >= 3.2.2)
dotenv (~> 2.1, >= 2.1.1)
Expand All @@ -13,11 +13,12 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (5.2.8.1)
activesupport (6.1.7.7)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
amazing_print (1.4.0)
Expand Down Expand Up @@ -55,7 +56,7 @@ GEM
citeproc (~> 1.0, >= 1.0.9)
csl (~> 1.6)
colorize (0.8.1)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.3)
crack (0.4.5)
rexml
crass (1.0.6)
Expand Down Expand Up @@ -100,7 +101,7 @@ GEM
tilt
hashdiff (1.0.1)
htmlentities (4.3.4)
i18n (1.12.0)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
iso8601 (0.9.1)
json-canonicalization (0.3.0)
Expand Down Expand Up @@ -137,7 +138,7 @@ GEM
oj (>= 2.8.3)
oj_mimic_json (~> 1.0, >= 1.0.1)
matrix (0.4.2)
minitest (5.16.3)
minitest (5.22.3)
multi_json (1.15.0)
multipart-post (2.2.3)
namae (1.0.2)
Expand Down Expand Up @@ -207,17 +208,17 @@ GEM
rdf (~> 3.2)
temple (0.9.1)
thor (1.2.1)
thread_safe (0.3.6)
tilt (2.0.11)
tzinfo (1.2.10)
thread_safe (~> 0.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-types (1.8.0)
unicode_utils (1.4.0)
vcr (6.1.0)
webmock (3.18.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.6.13)
zlib (2.1.1)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion lib/orcid_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module OrcidClient
VERSION = "0.10.1"
VERSION = "0.11.0"
end
2 changes: 1 addition & 1 deletion orcid_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

# Declary dependencies here, rather than in the Gemfile
s.add_dependency 'activesupport', '>= 4.2.5', '< 6'
s.add_dependency 'activesupport', '>= 6', '< 7'
s.add_dependency 'bolognese', '~> 2.1.0'
s.add_dependency 'builder', '~> 3.2', '>= 3.2.2'
s.add_dependency 'dotenv', '~> 2.1', '>= 2.1.1'
Expand Down
Loading