Skip to content

Commit

Permalink
Drop required Go version to 1.20 and document policy. (#640)
Browse files Browse the repository at this point in the history
* Drop required Go version to 1.20 and document policy.

* Fix library version.
  • Loading branch information
andrewsomething committed Oct 11, 2023
1 parent d6e1543 commit 612a122
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [v1.104.1] - 2023-10-10

* #640 - @andrewsomething - Drop required Go version to 1.20 and document policy.
* #640 - @andrewsomething - Fix library version.

## [v1.104.0] - 2023-10-10

- #637 - @mikesmithgh - chore: change uptime alert comparison type
Expand Down
8 changes: 8 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,11 @@ github-changelog-generator -org digitalocean -repo godo
5. Update the `Tag version` and `Release title` field with the new godo version. Be sure the version has a `v` prefixed in both places. Ex `v1.8.0`.
6. Copy the changelog bullet points to the description field.
7. Publish the release.

## Go Version Support

This project follows the support [policy of Go](https://go.dev/doc/devel/release#policy)
as its support policy. The two latest major releases of Go are supported by the project.
[CI workflows](.github/workflows/ci.yml) should test against both supported versions.
[go.mod](./go.mod) should specify the oldest of the supported versions to give
downstream users of godo flexibility.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/digitalocean/godo

go 1.21
go 1.20

require (
github.com/google/go-querystring v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion godo.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
)

const (
libraryVersion = "1.103.0"
libraryVersion = "1.104.1"
defaultBaseURL = "https://api.digitalocean.com/"
userAgent = "godo/" + libraryVersion
mediaType = "application/json"
Expand Down

0 comments on commit 612a122

Please sign in to comment.