Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Makarov committed Apr 9, 2015
2 parents c122231 + 941d9f0 commit 98af7b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.11.1 (2015-04-09)

- Hotfix: added check for empty hosts in vagrant.yml

## 0.11.0 (2015-04-09)

- Using semantic versioning and tracking changes in the CHANGELOG.md file
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.1
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ Vagrant.configure("2") do |config|

# The default box private network IP is 192.168.10.10
# Configure additional IP addresses in vagrant.yml
for host in vconfig['hosts'] do
vconfig['hosts'].each do |host|
config.vm.network "private_network", ip: host['ip']
end
end unless vconfig['hosts'].nil?

####################################################################
## Synced folders configuration ##
Expand Down

0 comments on commit 98af7b8

Please sign in to comment.