Skip to content

Commit

Permalink
Merge pull request #88 from Songmu/tagpr-from-v0.20.12
Browse files Browse the repository at this point in the history
Release for v0.20.13
  • Loading branch information
Songmu committed Jun 16, 2023
2 parents 8ba731c + ae79d94 commit f673af5
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down Expand Up @@ -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)

2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package godzil

const version = "0.20.12"
const version = "0.20.13"

var revision = "HEAD"

0 comments on commit f673af5

Please sign in to comment.