diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9c2440..581f2da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - go: ["1.15", "1.16", "1.17"] + go: ["1.16", "1.17"] steps: - name: Set up Go uses: actions/setup-go@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f46803..22ce93c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v3.1.2 (2021-12-09) + +* Adds back support for Go 1.16 which was previously removed in `3.1.0` + ## v3.1.1 (2021-11-21) * No longer require `sha checksum` on cask installation as some casks didn't include them which would lead to items on your backup list not getting installed diff --git a/go.mod b/go.mod index 46a7af7..8048b4a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/Justintime50/alchemist -go 1.17 +go 1.16 require ( github.com/justintime50/mockcmd v0.2.0