From c484b8a63ca23a483bbf58e6537d105cfc82373b Mon Sep 17 00:00:00 2001 From: oriAdler Date: Wed, 1 Dec 2021 09:55:16 +0200 Subject: [PATCH] Release 0.1.221 This release changes the return value of ``Connection.Close()`` to avoid causing an error when trying to destroy a client when the connection is already closed. Related #506 --- CHANGES.md | 4 ++++ version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 28a18d0c..23abb1fd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,10 @@ This document describes the relevant changes between releases of the OCM API SDK. +## 0.1.221 Dec 1 2021 + +- Modify `func (c *Connection) Close()` to return nil in case the connection is already closed. + ## 0.1.220 Nov 25 2021 - Added utilities to test with `jq` expressions and JSON patches. diff --git a/version.go b/version.go index 75e169b6..fb42b03c 100644 --- a/version.go +++ b/version.go @@ -18,4 +18,4 @@ limitations under the License. package sdk -const Version = "0.1.220" +const Version = "0.1.221"