omnibus 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzI1YzkzMTliYzc1NmUwM2E0NDRmMzhkNmFjZmIxNDUwODBjNTZjYw==
4
+ MGQ1NWQyMTRmYTExYjZiNTg1OGMzYWZjNDlkOWIzNjlhN2E3NmM1Nw==
5
5
  data.tar.gz: !binary |-
6
- NzQzY2IyNDUwYTNkYTFlZmZlYTk5ODAxMmE2NDQ4NzhiZTAyZDI1NA==
6
+ OWRkMzNiOTI5YWMxZGFmNjU1OGI2Y2U2YzlkMDI2ZTE4NWE0Mzc0NA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZTczMTQ5ZjNkNzQ2YTc2ZDM5OWQ0NTEzOWQ3ZWNlZDBjMDY5ODA3NDQ2ZTlj
10
- ZTA2MzEwZGQzMDI1M2EyZDc1YzFkMmJiNWZhNTYzNzM3NTM4ODMyNzU5MTgy
11
- ZjA3MzZkNTJjNzVjNjc2MGM1M2ViZTM5YjEwZWZiMDM1NWY4Y2I=
9
+ NDZlNjA3N2MyMjViOTVhMGM2OGNlZWE3YTRhYmVhNDk5MWMxY2IxOTgzNjli
10
+ NWE0OTZkYjNlOThjYjhkNWVlYjhkOWIzOWZmYzAxNzU0MzAxYWMxY2ZhZGRk
11
+ MGQwOWQ3NWI3Yjc3NzUzNDM2Nzk0MmU5MDE4ZjhkYjliNTU3OTc=
12
12
  data.tar.gz: !binary |-
13
- ZjM1MzdjNjA5MmJiOGIwYzY1NDhlYWQxOTM4ZmQ5NWIxNzNkNzczYzM4OTQ2
14
- OWZmOTY1NzZiY2VkYjg5MTJlZGIxODFkYjk4NDY0MDUyODQxYmE4OTg2NTRi
15
- OWYxZWVkNTAzZGQ3ODBiZDlkMzZkMjEyNTgxY2E0OWQxOGU2NmY=
13
+ ZmYyOWVkZDljYTkzMDIwNWQ1NmFjNTA4MGZmMDc4NzkxNjAxYjUzM2RlMmFj
14
+ NTcwYjExZDc0ZmEzZTQwOTkwOWRlZjdjZjdhYjVlYTczMThlMGJjMGJjODJj
15
+ NWVhZjFlZjg2ZTVmNjgyZmZmZjQ3ZjlmZjRlNTBmYmQ2ODg5Yzg=
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
- ## 1.0.0
1
+ ## 1.0.1 (April 21, 2013)
2
+
3
+ BUG FIXES:
4
+
5
+ * Vagrant and Berkshelf Vagrant plugin version updates in generated project's
6
+ README.md. Current requirements for the virtualized build lab are:
7
+ * Vagrant 1.2.1+
8
+ * `vagrant-berkshelf` plugin (this was renamed from `berkshelf-vagrant`)
9
+
10
+ ## 1.0.0 (April 21, 2013)
2
11
 
3
12
  * The initial release.
@@ -73,15 +73,15 @@ The only requirements for standing up this virtualized build lab are:
73
73
 
74
74
  * VirtualBox - native packages exist for most platforms and can be downloaded
75
75
  from the [VirtualBox downloads page](https://www.virtualbox.org/wiki/Downloads).
76
- * Vagrant 1.1+ - native packages exist for most platforms and can be downloaded
76
+ * Vagrant 1.2.1+ - native packages exist for most platforms and can be downloaded
77
77
  from the [Vagrant downloads page](http://downloads.vagrantup.com/).
78
78
 
79
- The [berkshelf-vagrant](https://github.com/RiotGames/berkshelf-vagrant) and
79
+ The [vagrant-berkshelf](https://github.com/RiotGames/vagrant-berkshelf) and
80
80
  [vagrant-omnibus](https://github.com/schisamo/vagrant-omnibus) Vagrant plugins
81
81
  are also required and can be installed easily with the following commands:
82
82
 
83
83
  ```shell
84
- $ vagrant plugin install berkshelf-vagrant
84
+ $ vagrant plugin install vagrant-berkshelf
85
85
  $ vagrant plugin install vagrant-omnibus
86
86
  ```
87
87
 
@@ -3,8 +3,8 @@
3
3
 
4
4
  require "vagrant"
5
5
 
6
- if Vagrant::VERSION < "1.2.0"
7
- raise "The Omnibus Build Lab is only compatible with Vagrant 1.2+"
6
+ if Vagrant::VERSION < "1.2.1"
7
+ raise "The Omnibus Build Lab is only compatible with Vagrant 1.2.1+"
8
8
  end
9
9
 
10
10
  host_project_path = File.expand_path("..", __FILE__)
@@ -16,5 +16,5 @@
16
16
  #
17
17
 
18
18
  module Omnibus
19
- VERSION = "1.0.0"
19
+ VERSION = "1.0.1"
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omnibus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Opscode