Skip to content

Commit 8222a5d

Browse files
authored
Merge pull request #202 from Temikus/release_220
Bump fog-google to 1.4 & release 2.2.0
2 parents 417f16f + 7015f85 commit 8222a5d

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

CHANGELOG.md

+25-14
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1-
# 2.1.0 (May 2018)
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4+
5+
## 2.2.0 (June 2018)
6+
7+
#### Fixed
8+
* Bumped fog-google to v1.4.
9+
This is a necessary upstream update to work properly with Ruby 2.4+ on some
10+
platforms.
11+
12+
## 2.1.0 (May 2018)
213

314
* Add new configuration option `image_project_id` to allow using GCE images from other projects. [seanmalloy]
415
* Add new configuration option `network_project_id` to allow using GCP Shared VPC networks. [seanmalloy]
516
* Add new configuration option `service_account` to allow setting the IAM service account on instances. [seanmalloy]
617
* Deprecate configuration option `service_accounts`. Use `scopes` configuration option instead. [seanmalloy]
718

8-
# 2.0.0 (March 2018)
19+
## 2.0.0 (March 2018)
920

1021
* Update to use fog-google gem v1
1122
* Add new configuration option `labels` for setting [labels](https://cloud.google.com/compute/docs/labeling-resources)
@@ -18,23 +29,23 @@
1829
specified at runtime
1930
* Rsync behavior now consistent with Vagrant's default, removed old rsync code
2031

21-
# 1.0.0 (July 2017)
22-
# 0.2.5 (October 2016)
23-
# 0.2.4 (April 2016)
24-
# 0.2.3 (January 2016)
32+
## 1.0.0 (July 2017)
33+
## 0.2.5 (October 2016)
34+
## 0.2.4 (April 2016)
35+
## 0.2.3 (January 2016)
2536

26-
# 0.2.2 (October 2015)
37+
## 0.2.2 (October 2015)
2738

2839
* Cleanup instance and disks on backend failures [p0deje]
2940
* Refactoring ssh warnings into separate action [temikus]
3041
* Refactoring disk type detection logic [temikus]
3142
* Miscellaneous doc updates and minor fixes [mbrukman, temikus]
3243

33-
# 0.2.1 (July 2015)
44+
## 0.2.1 (July 2015)
3445

3546
* Temporarily reverted the old SyncedFolders behaviour. (See #94)
3647

37-
# 0.2.0 (July 2015)
48+
## 0.2.0 (July 2015)
3849

3950
* Added support for service account definitions [tcr]
4051
* Added support for preemptible instances [jcdang]
@@ -48,7 +59,7 @@
4859
* Updated documentation and examples [mbrukman, temikus]
4960
* Miscellaneous UI/UX updates and bugfixes [temikus]
5061

51-
# 0.1.5 (May 2015)
62+
## 0.1.5 (May 2015)
5263

5364
* Added support for JSON private keys [temikus]
5465
* Added disk_type parameter support [temikus]
@@ -57,23 +68,23 @@
5768
* Added support for user specified rsync excludes [patkar]
5869
* Miscellaneous bugfixes [mbrukman, beauzeaux, iceydee, mklbtz, temikus]
5970

60-
# 0.1.4 (October 2014)
71+
## 0.1.4 (October 2014)
6172

6273
* Add option for disk size [franzs]
6374
* Add tags [ptone]
6475
* Updated default for latest Debian image
6576

66-
# 0.1.3 (July 2014)
77+
## 0.1.3 (July 2014)
6778

6879
* Updated all image references
6980
* Fixed fog deprecation warning
7081
* Updated example box `google.box`
7182
* Got spec tests passing again
7283

73-
# 0.1.1 (October 11, 2013)
84+
## 0.1.1 (October 11, 2013)
7485

7586
* Fixed bug with instance ready/SSH
7687

77-
# 0.1.0 (August 14, 2013)
88+
## 0.1.0 (August 14, 2013)
7889

7990
* Initial release.

lib/vagrant-google/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414
module VagrantPlugins
1515
module Google
16-
VERSION = "2.1.0".freeze
16+
VERSION = "2.2.0".freeze
1717
end
1818
end

vagrant-google.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
2828
s.required_rubygems_version = ">= 1.3.6"
2929
s.rubyforge_project = "vagrant-google"
3030

31-
s.add_runtime_dependency "fog-google", "~> 1.3"
31+
s.add_runtime_dependency "fog-google", "~> 1.4"
3232

3333
# This is a restriction to avoid errors on `failure_message_for_should`
3434
# TODO: revise after vagrant_spec goes past >0.0.1 (at master@e623a56)

0 commit comments

Comments
 (0)