mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
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:
parent
c3ee560429
commit
2c3d3f400e
5 changed files with 8 additions and 5 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -16,11 +16,10 @@ builds:
|
|||
- windows
|
||||
- darwin
|
||||
goarch:
|
||||
- 386
|
||||
- amd64
|
||||
- arm
|
||||
- arm64
|
||||
goarm:
|
||||
- 6
|
||||
|
||||
archives:
|
||||
- format_overrides:
|
||||
|
|
|
|||
|
|
@ -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
2
go.mod
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue