From e38357ce9080295efa053f69acf64255fdf18362 Mon Sep 17 00:00:00 2001 From: Mo Omer Date: Thu, 9 May 2024 18:21:35 -0500 Subject: [PATCH] Bump version to v2.1.0 --- bonsai/client.go | 2 +- bonsai/client_test.go | 2 +- examples/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bonsai/client.go b/bonsai/client.go index 3e6ea19..67fd599 100644 --- a/bonsai/client.go +++ b/bonsai/client.go @@ -22,7 +22,7 @@ import ( // Client representation configuration. const ( // Version reflects this API Client's version. - Version = "v2.0.0" + Version = "v2.1.0" // BaseEndpoint is the target API URL base location. BaseEndpoint = "https://api.bonsai.io" // UserAgent is the internally used value for the AccessKey-Agent header diff --git a/bonsai/client_test.go b/bonsai/client_test.go index 75fe76f..5a37eb5 100644 --- a/bonsai/client_test.go +++ b/bonsai/client_test.go @@ -125,7 +125,7 @@ func (s *ClientVCRTestSuite) SetupSuite() { bonsai.WithApplication( bonsai.Application{ Name: "bonsai-api-go", - Version: "v2.0.0", + Version: "v2.1.0", }, ), bonsai.WithCredentialPair( diff --git a/examples/go.mod b/examples/go.mod index 84bd404..71b5418 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -2,7 +2,7 @@ module github.com/omc/bonsai-api-go/v2/example go 1.22.2 -require github.com/omc/bonsai-api-go/v2 v2.0.0-00010101000000-000000000000 +require github.com/omc/bonsai-api-go/v2 v2.1.0 require ( github.com/google/go-querystring v1.1.0 // indirect