From bde37ee1e76af9c5e61ac9481971f2c03a53d6b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 16 Jun 2023 09:23:14 +0000 Subject: [PATCH 1/2] [tagpr] prepare for the next release --- .tagpr | 42 ++++++++++++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 .tagpr diff --git a/.tagpr b/.tagpr new file mode 100644 index 0000000..2b28626 --- /dev/null +++ b/.tagpr @@ -0,0 +1,42 @@ +# config file for the tagpr in git config format +# The tagpr generates the initial configuration, which you can rewrite to suit your environment. +# CONFIGURATIONS: +# tagpr.releaseBranch +# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch, +# creates or updates a pull request as a release candidate, or tags when they are merged. +# +# tagpr.versionFile +# Versioning file containing the semantic version needed to be updated at release. +# It will be synchronized with the "git tag". +# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc. +# Sometimes the source code file, such as version.go or Bar.pm, is used. +# If you do not want to use versioning files but only git tags, specify the "-" string here. +# You can specify multiple version files by comma separated strings. +# +# tagpr.vPrefix +# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true) +# This is only a tagging convention, not how it is described in the version file. +# +# tagpr.changelog (Optional) +# Flag whether or not changelog is added or changed during the release. +# +# tagpr.command (Optional) +# Command to change files just before release. +# +# tagpr.template (Optional) +# Pull request template in go template format +# +# tagpr.release (Optional) +# GitHub Release creation behavior after tagging [true, draft, false] +# If this value is not set, the release is to be created. +# +# tagpr.majorLabels (Optional) +# Label of major update targets. Default is [major] +# +# tagpr.minorLabels (Optional) +# Label of minor update targets. Default is [minor] +# +[tagpr] + vPrefix = true + releaseBranch = main + versionFile = version.go diff --git a/version.go b/version.go index e3227cd..7d4c546 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package godzil -const version = "0.20.12" +const version = "0.20.13" var revision = "HEAD" From ae79d94f19db807baef45fe98365031c2336af63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 16 Jun 2023 09:23:15 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86971c6..9f49586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v0.20.13](https://github.com/Songmu/godzil/compare/v0.20.12...v0.20.13) - 2023-06-16 +- Bump golang.org/x/net from 0.0.0-20220812174116-3211cb980234 to 0.7.0 by @dependabot in https://github.com/Songmu/godzil/pull/86 +- introduce tagpr by @Songmu in https://github.com/Songmu/godzil/pull/87 +- update templates with tagpr by @Songmu in https://github.com/Songmu/godzil/pull/89 +- update deps with go 1.20 by @Songmu in https://github.com/Songmu/godzil/pull/90 + ## [v0.20.12](https://github.com/Songmu/godzil/compare/v0.20.11...v0.20.12) (2022-08-18) * update deps [#85](https://github.com/Songmu/godzil/pull/85) ([Songmu](https://github.com/Songmu)) @@ -222,4 +228,3 @@ * detect version declaration files [#1](https://github.com/Songmu/godzil/pull/1) ([Songmu](https://github.com/Songmu)) ## [v0.0.1](https://github.com/Songmu/gauthor/compare/0a300d82cbed...v0.0.1) (2019-02-15) -