From 2c3d3f400efe063e85028f84c5c2df8c2d0a3e14 Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Sun, 14 Mar 2021 21:21:30 +0100 Subject: [PATCH] chore: bump golang to 1.16 (#118) * chore: support goarch 386 * docs(readme): add golang version hint in development section --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- .goreleaser.yml | 3 +-- README.md | 4 ++++ go.mod | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b147159b..2cc15f77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3139b5da..b7f9c396 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/.goreleaser.yml b/.goreleaser.yml index 2d01566a..0272d395 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,11 +16,10 @@ builds: - windows - darwin goarch: + - 386 - amd64 - arm - arm64 - goarm: - - 6 archives: - format_overrides: diff --git a/README.md b/README.md index d9ad9891..231b038b 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/go.mod b/go.mod index 82c6eabb..b9a8a7e3 100644 --- a/go.mod +++ b/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