From eae725a5ec74cad02f3abedd457ad4c87a96ffe2 Mon Sep 17 00:00:00 2001 From: Gregory Mankes Date: Mon, 16 Oct 2023 11:42:17 -0400 Subject: [PATCH] bump library version and changelog (#646) * bump library version and changelog * use minor version bump over patch --- CHANGELOG.md | 7 +++++++ godo.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74fe604b..74f07c14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v1.105.0] - 2023-10-16 + +- #643 - @dweinshenker - Add support for scalable storage on database clusters +- #641 - @dweinshenker - Fix Kafka Partition Count +- #645 - @gregmankes - APPS-7325 - update app godo spec +- #642 - @dependabot[bot] - Bump golang.org/x/net from 0.7.0 to 0.17.0 + ## [v1.104.1] - 2023-10-10 * #640 - @andrewsomething - Drop required Go version to 1.20 and document policy. diff --git a/godo.go b/godo.go index 951dda5e..e3f2ec2c 100644 --- a/godo.go +++ b/godo.go @@ -21,7 +21,7 @@ import ( ) const ( - libraryVersion = "1.104.1" + libraryVersion = "1.105.0" defaultBaseURL = "https://api.digitalocean.com/" userAgent = "godo/" + libraryVersion mediaType = "application/json"