vagrant-hosts 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +12 -0
- data/lib/vagrant-hosts/addresses.rb +2 -2
- data/lib/vagrant-hosts/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
CHANGELOG
|
2
2
|
=========
|
3
3
|
|
4
|
+
2.1.1
|
5
|
+
|
6
|
+
2013-11-13
|
7
|
+
|
8
|
+
This is a backwards compatible bugfix release.
|
9
|
+
|
10
|
+
* (GH-20) Correct errors stemming from the extraction of VagrantHosts::Addresses
|
11
|
+
|
12
|
+
Thanks to Reid Vandewiele for his work on this release.
|
13
|
+
|
4
14
|
2.1.0
|
5
15
|
-----
|
6
16
|
|
@@ -12,6 +22,8 @@ This is a backwards compatible feature and bugfix release.
|
|
12
22
|
* (GH-18) Add `hosts` command to list machine addresses and generate Puppet
|
13
23
|
manifests to create host entries on the host machine.
|
14
24
|
|
25
|
+
Thanks to Michael Moll and Chad Metacalf for their work on this release.
|
26
|
+
|
15
27
|
2.0.0
|
16
28
|
-----
|
17
29
|
|
@@ -5,10 +5,10 @@ module VagrantHosts::Addresses
|
|
5
5
|
def all_hosts(config)
|
6
6
|
|
7
7
|
all_hosts = []
|
8
|
-
all_hosts += local_hosts
|
8
|
+
all_hosts += local_hosts(@machine)
|
9
9
|
|
10
10
|
if config.autoconfigure
|
11
|
-
all_hosts += vagrant_hosts
|
11
|
+
all_hosts += vagrant_hosts(@env)
|
12
12
|
end
|
13
13
|
all_hosts += config.hosts
|
14
14
|
|