Skip to content

Commit

Permalink
Merge pull request #174 from Temikus/release_1.0
Browse files Browse the repository at this point in the history
Release 1.0
  • Loading branch information
erjohnso authored Jul 23, 2017
2 parents d543514 + 3ac223f commit 06a6d92
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.2.3
# Tracking Vagrant 1.8.5
2.3.0
# Tracking Vagrant 1.9.7
9 changes: 4 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@

source "https://rubygems.org"

gemspec
group :plugins do
# Dependencies need to be specified in vagrant-google.gemspec
gemspec
end

group :development do
# We depend on Vagrant for development, but we don't add it as a
Expand All @@ -23,7 +26,3 @@ group :development do
gem 'vagrant', git: "https://github.com/mitchellh/vagrant.git"
gem 'vagrant-spec', git: "https://github.com/mitchellh/vagrant-spec.git"
end

group :plugins do
gem "vagrant-google" , path: "."
end
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is a [Vagrant](http://www.vagrantup.com) 1.2+ plugin that adds an
[Google Compute Engine](http://cloud.google.com/compute/) (GCE) provider to
Vagrant, allowing Vagrant to control and provision instances in GCE.

**NOTE:** This plugin requires Vagrant 1.2+.
The maintainers for this plugin are @temikus(primary), @erjohnso(backup).

## Features

Expand Down Expand Up @@ -187,6 +187,7 @@ This provider exposes quite a few provider-specific configuration options:
e.g. 10/08/2015 13:15:15 is "i-2015081013-15637fda".
* `network` - The name of the network to use for the instance. Default is
"default".
* `subnetwork` - The name of the subnetwork to use for the instance.
* `tags` - An array of tags to apply to this instance.
* `zone` - The zone name where the instance will be created.
* `can_ip_forward` - Boolean whether to enable IP Forwarding.
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-google/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.
module VagrantPlugins
module Google
VERSION = "0.2.5".freeze
VERSION = "1.0.0".freeze
end
end
6 changes: 5 additions & 1 deletion vagrant-google.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ Gem::Specification.new do |s|

s.add_development_dependency "pry"
s.add_development_dependency "pry-byebug"
s.add_development_dependency "rake"

# This is a restriction to avoid an error "undefined method 'last_comment'"
# which is deprecated (see https://github.com/ruby/rake/issues/116)
# Remove it after update rspec-core to version greater than or equal to 3.4.4
s.add_development_dependency "rake", "< 11.0"
s.add_development_dependency "rspec", "~> 2.14"
s.add_development_dependency "rubocop", "~> 0.35"
s.add_development_dependency "highline"
Expand Down

0 comments on commit 06a6d92

Please sign in to comment.