Skip to content

Commit 69c5963

Browse files
authored
Loosen aws-sdk-core Requirement (#13)
We are currently targeting a specific minor version of the `aws-sdk-core` gem, despite not having any particular need for that level of specificity in this developer-environment-only gem. It also makes it more difficult to update the version of `aws-sdk-core` we target in our main repo. This PR loosens our requirement to let us pick up newer 3.x versions than the one we currently target. We could probably support older versions, too, if we have a need; happy to make that tweak if anyone would prefer.
1 parent 795474b commit 69c5963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-google.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2323
spec.require_paths = ['lib']
2424

25-
spec.add_dependency 'aws-sdk-core', '~> 3.211.0'
25+
spec.add_dependency 'aws-sdk-core', '~> 3.211'
2626
spec.add_dependency 'google-apis-core', '~> 0.11.3' # Newest version compatible with code-dot-org's google_drive>googleauth dependency
2727
spec.add_dependency 'launchy', '~> 3.0.1'
2828

0 commit comments

Comments
 (0)