chore: bump golang to 1.16 (#118)

* chore: support goarch 386
* docs(readme): add golang version hint in development section
This commit is contained in:
Manuel Vogel 2021-03-14 21:21:30 +01:00 committed by GitHub
parent c3ee560429
commit 2c3d3f400e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 5 deletions

View file

@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:

View file

@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16
- name: Run tests
run: |
make test

View file

@ -16,11 +16,10 @@ builds:
- windows
- darwin
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 6
archives:
- format_overrides:

View file

@ -45,6 +45,9 @@
- [Templates](#templates)
- [Supported Styles](#supported-styles)
- [Jira Integration](#jira-integration)
- [1. Change the header parse pattern to recognize Jira issue id in the configure file.](#1-change-the-header-parse-pattern-to-recognize-jira-issue-id-in-the-configure-file)
- [2. Add Jira configuration to the configure file.](#2-add-jira-configuration-to-the-configure-file)
- [3. Update the template to show Jira data.](#3-update-the-template-to-show-jira-data)
- [FAQ](#faq)
- [TODO](#todo)
- [Thanks](#thanks)
@ -639,6 +642,7 @@ We alway welcome your contributions :clap:
### Development
1. Use Golang version `>= 1.16`
1. Fork (https://github.com/git-chglog/git-chglog) :tada:
1. Create a feature branch :coffee:
1. Run test suite with the `$ make test` command and confirm that it passes :zap:

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/git-chglog/git-chglog
go 1.15
go 1.16
require (
github.com/AlecAivazis/survey/v2 v2.2.9