From 1e710c8d2dec041f61f7184539db64b2420d21be Mon Sep 17 00:00:00 2001 From: Viral Modi Date: Wed, 9 Jan 2019 11:38:20 -0800 Subject: [PATCH] Releasing OCI Knife plugin version 2.0.1 Change the version number and add changelog. --- CHANGELOG.md | 11 +++++++++++ lib/knife-oci/version.rb | 2 +- spec/unit/server_create_spec.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94518ca..303a0a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## 2.0.1 - 2019-01-09 +### Changed +- Change default ssh timeout for `knife oci server create` from 180s to 300s. + +### Fixed +- Fix help text in `knife oci server show --instance_id` and `knife oci server delete --purge` commands. + +### Added +- Support for multiple VNICs. `knife oci server show` can show multiple VNICs. +- Support in `--purge` param for `knife oci server delete` to remove the Chef Client as well as the Chef Node. + ## 2.0.0 - 2017-09-11 ### Changed - Changed the gem name from knife-bmcs to knife-oci, and changed all occurances of BMCS to OCI. Details can be found [here](docs/rename.md). diff --git a/lib/knife-oci/version.rb b/lib/knife-oci/version.rb index f287b2f..dbe378d 100644 --- a/lib/knife-oci/version.rb +++ b/lib/knife-oci/version.rb @@ -2,6 +2,6 @@ module Knife module OCI - VERSION = '2.0.0'.freeze + VERSION = '2.0.1'.freeze end end diff --git a/spec/unit/server_create_spec.rb b/spec/unit/server_create_spec.rb index 8c84b86..9570fc6 100644 --- a/spec/unit/server_create_spec.rb +++ b/spec/unit/server_create_spec.rb @@ -180,7 +180,7 @@ it 'should add to user agent' do knife_oci_server_create.config[:oci_config_file] = DUMMY_CONFIG_FILE - expect(knife_oci_server_create.oci_config.additional_user_agent).to eq 'Oracle-ChefKnifeOCI/2.0.0' + expect(knife_oci_server_create.oci_config.additional_user_agent).to eq 'Oracle-ChefKnifeOCI/2.0.1' end end