From 45b08f6213aef77664f21a2556ef3a86ea2e6748 Mon Sep 17 00:00:00 2001 From: Nabhajit Ray Date: Fri, 17 Jul 2020 18:19:41 +0530 Subject: [PATCH] release 1.5.0 pr --- CHANGELOG.md | 2 +- README.md | 6 +++--- examples/hypervisor_cluster_profile.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f11722cc..70e9c03c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) -# [v1.5.0] (unreleased) +# [v1.5.0] (2020-07-17) ### Notes - This release extends supports of the SDK to Oneview API1800. - Added support for Id pools IPV4 Ranges. diff --git a/README.md b/README.md index d62ac3b1..289f973f 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ The Docker Store image `tag` consist of two sections: `` ```bash # Download and store a local copy of hpe-oneview-sdk-for-golang and # use it as a Docker image. -$ docker pull hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.4.0-OV5.2 +$ docker pull hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.5.0-OV5.3 #Run docker commands and this will in turn create # a sh session where you can create files, issue commands and execute the tests -$ docker run -it hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.4.0-OV5.2 /bin/sh +$ docker run -it hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.5.0-OV5.3 /bin/sh ``` @@ -43,7 +43,7 @@ export ONEVIEW_OV_DOMAIN=LOCAL export ONEVIEW_SSLVERIFY=false export ONEVIEW_APIVERSION= ``` -Note: Currently this SDK supports OneView API 1600 minimally where we can test OneView API 1600 version with this SDK. No new fields have been added/deleted to support API 1600 version. Complete support will be done in next releases. +Note: Currently this SDK supports OneView API 1800 minimally where we can test OneView API 1800 version with this SDK. No new fields have been added/deleted to support API 1800 version. Complete support will be done in next releases. ## Testing your changes diff --git a/examples/hypervisor_cluster_profile.go b/examples/hypervisor_cluster_profile.go index 0d4c2eaa..8fd579f7 100644 --- a/examples/hypervisor_cluster_profile.go +++ b/examples/hypervisor_cluster_profile.go @@ -105,7 +105,7 @@ func main() { } //Delete function accepts 2 optional arguments - softDelete(boolean) and force(boolean) till API1200 - //softDelete is mandatory argument for delete function in API 1600 + //softDelete is mandatory argument for delete function from API 1600 if ovc.APIVersion > 1200 { err = ovc.DeleteHypervisorClusterProfileSoftDelete(new_hcp, false) if err != nil {