Skip to content

Commit

Permalink
Merge pull request #66 from airbnb/version
Browse files Browse the repository at this point in the history
Prepare for new stemcell release
  • Loading branch information
liukai committed Feb 18, 2015
2 parents b0faacf + d25e9f3 commit 93955d1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# next release
- ...

# 0.8.1
- Add retry mechanism for instances launch/termination
- Make `Launcher::launch!` transaction-like, which reclaims all partially launched instances in the event of non-intermittent error
- Display better error message with reason and failed instances
- Take converge lock during initial converge

# 0.8.0
- Support for VPC [Brenden](https://github.com/brndnmtthws)
- Support relative paths and home alias in `Launcher#try_file` [Patrick Viet](https://github.com/patrickviet)
Expand Down
26 changes: 14 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
stemcell (0.8.0)
stemcell (0.8.1)
aws-creds (~> 0.2.2)
aws-sdk (~> 1.9)
chef (>= 11.4.0)
Expand All @@ -15,7 +15,9 @@ GEM
specs:
aws-creds (0.2.3)
trollop (~> 2.0)
aws-sdk (1.51.0)
aws-sdk (1.62.0)
aws-sdk-v1 (= 1.62.0)
aws-sdk-v1 (1.62.0)
json (~> 1.4)
nokogiri (>= 1.4.4)
chef (11.14.6)
Expand Down Expand Up @@ -46,33 +48,33 @@ GEM
diff-lcs (1.2.5)
docile (1.1.5)
erubis (2.7.0)
ffi (1.9.3)
ffi-yajl (1.0.2)
ffi (1.9.6)
ffi-yajl (1.3.1)
ffi (~> 1.5)
libyajl2 (~> 1.0)
libyajl2 (~> 1.2)
hashie (2.1.2)
highline (1.6.21)
ipaddress (0.8.0)
json (1.7.7)
libyajl2 (1.0.1)
libyajl2 (1.2.0)
method_source (0.8.2)
mime-types (1.25.1)
mini_portile (0.6.0)
mini_portile (0.6.2)
mixlib-authentication (1.3.0)
mixlib-log
mixlib-cli (1.5.0)
mixlib-config (2.1.0)
mixlib-log (1.6.0)
mixlib-shellout (1.4.0)
multi_json (1.10.1)
net-ssh (2.9.1)
net-ssh (2.9.2)
net-ssh-gateway (1.2.0)
net-ssh (>= 2.6.5)
net-ssh-multi (1.2.0)
net-ssh (>= 2.6.5)
net-ssh-gateway (>= 1.2.0)
nokogiri (1.6.3.1)
mini_portile (= 0.6.0)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
ohai (7.2.4)
ffi (~> 1.9)
ffi-yajl (~> 1.0)
Expand All @@ -89,7 +91,7 @@ GEM
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rack (1.5.2)
rack (1.6.0)
rake (10.3.2)
rest-client (1.6.7)
mime-types (>= 1.16)
Expand All @@ -110,7 +112,7 @@ GEM
simplecov-html (0.8.0)
slop (3.6.0)
systemu (2.6.4)
trollop (2.0)
trollop (2.1.1)
wmi-lite (1.0.0)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion lib/stemcell/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Stemcell
VERSION = "0.8.0"
VERSION = "0.8.1"
end

0 comments on commit 93955d1

Please sign in to comment.