From 619bef21265f8f86750da22af657f5ce58ba470f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 25 Dec 2024 09:52:24 +0000 Subject: [PATCH] [tagpr] prepare for the next release --- .tagpr | 48 ++++++++++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 .tagpr diff --git a/.tagpr b/.tagpr new file mode 100644 index 00000000..380bf95d --- /dev/null +++ b/.tagpr @@ -0,0 +1,48 @@ +# 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 file in go template format +# +# tagpr.templateText (Optional) +# Pull request template text 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.commitPrefix (Optional) +# Prefix of commit message. Default is "[tagpr]" +# +[tagpr] + vPrefix = true + releaseBranch = main + versionFile = version/version.go diff --git a/version/version.go b/version/version.go index 681447be..2ca9fbf0 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ import ( ) var ( - version = "0.17.3" + version = "0.18.0" revision = "dev" info, ok = debug.ReadBuildInfo() )