Skip to content

Commit

Permalink
Drop required Go version to 1.20 and document policy.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething committed Oct 11, 2023
1 parent d6e1543 commit 643ea67
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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

0 comments on commit 643ea67

Please sign in to comment.