From 02ccc54e0eb832588d9c1c1ff30e254a3ce69dc8 Mon Sep 17 00:00:00 2001 From: Brian Gustafson Date: Thu, 17 Jan 2019 11:36:01 -0800 Subject: [PATCH] Release 2.0.2 --- CHANGELOG.md | 4 ++++ lib/knife-oci/version.rb | 2 +- spec/unit/server_create_spec.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 303a0a8..abb2998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ 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.2 - 2019-01-17 +### Fixed +- Fixed SSH failure during "knife oci server create" when using newer Chef Workstation and ChefDK versions. + ## 2.0.1 - 2019-01-09 ### Changed - Change default ssh timeout for `knife oci server create` from 180s to 300s. diff --git a/lib/knife-oci/version.rb b/lib/knife-oci/version.rb index dbe378d..9dfb7ad 100644 --- a/lib/knife-oci/version.rb +++ b/lib/knife-oci/version.rb @@ -2,6 +2,6 @@ module Knife module OCI - VERSION = '2.0.1'.freeze + VERSION = '2.0.2'.freeze end end diff --git a/spec/unit/server_create_spec.rb b/spec/unit/server_create_spec.rb index 9570fc6..a8eef2e 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.1' + expect(knife_oci_server_create.oci_config.additional_user_agent).to eq 'Oracle-ChefKnifeOCI/2.0.2' end end