diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..d7411da8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.index +*.log +.DS_Store +*.swp +.rvmrc +.testrc +.idea/ diff --git a/CHANGELOG b/CHANGELOG index 54af0b9b..4952c79b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ knife-vsphere changelog ---------------------- +0.9.5 * bdupras - added command vm config PROPERTY VALUE + mdkent - handle parent class of ClusterComputeResource + alastair - update readme to reflect behavior of vm.destroy_task and --purge option + 0.9.0 * bdupras - adds optional --shutdown parameter for guest os - added vm query VMNAME QUERY sub-command to query the named properties - modified vm state --wait-port to use vm.guest.ipAddress diff --git a/knife-vsphere.gemspec b/knife-vsphere.gemspec index ba7be775..ebe3ac6d 100644 --- a/knife-vsphere.gemspec +++ b/knife-vsphere.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "knife-vsphere" - s.version = "0.9.0" + s.version = "0.9.5" s.summary = "vSphere Support for Knife" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= diff --git a/lib/knife-vsphere/version.rb b/lib/knife-vsphere/version.rb index 1c4beebd..e7496546 100644 --- a/lib/knife-vsphere/version.rb +++ b/lib/knife-vsphere/version.rb @@ -1,4 +1,4 @@ module KnifeVsphere - VERSION = "0.9.1" + VERSION = "0.9.5" end