Skip to content

Commit

Permalink
use new aws-sdk gems (#102)
Browse files Browse the repository at this point in the history
* use new aws-sdk gems

* set aws components to ~> 1.0
  • Loading branch information
albertrdixon authored Dec 8, 2017
1 parent 3a4f188 commit 60b3800
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.3.1
- Use new modularized aws-sdk gems: aws-sdk-ec2 & aws-sdk-ecs

# 3.3.0
- Add `execute` command to execute arbitrary bash inside a running container
- Add `--all` flag to `execute` to run a command on all containers
Expand Down
3 changes: 2 additions & 1 deletion broadside.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ Gem::Specification.new do |spec|

spec.add_dependency 'activesupport', '>= 3', '< 6'
spec.add_dependency 'activemodel', '>= 3', '< 6'
spec.add_dependency 'aws-sdk', '~> 2.3'
spec.add_dependency 'aws-sdk-ecs', '~> 1.0'
spec.add_dependency 'aws-sdk-ec2', '~> 1.0'
spec.add_dependency 'dotenv', '>= 0.9.0', '< 3.0'
spec.add_dependency 'gli', '~> 2.13'
spec.add_dependency 'tty', '~> 0.5'
Expand Down
3 changes: 2 additions & 1 deletion lib/broadside.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require 'active_model'
require 'active_support/core_ext'
require 'aws-sdk'
require 'aws-sdk-ec2'
require 'aws-sdk-ecs'

require 'broadside/error'
require 'broadside/logging_utils'
Expand Down
2 changes: 1 addition & 1 deletion lib/broadside/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Broadside
VERSION = '3.3.0'.freeze
VERSION = '3.3.1'.freeze
end

0 comments on commit 60b3800

Please sign in to comment.