Skip to content

Commit

Permalink
Merge pull request #142 from tcnksm/tagpr-from-v0.15.0
Browse files Browse the repository at this point in the history
Release for v0.16.0
  • Loading branch information
Songmu authored Sep 26, 2022
2 parents 7a60c56 + 5211efb commit 04d8099
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
36 changes: 36 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 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 pcpr 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.tmplate (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]
vPrefix = true
releaseBranch = master
versionFile = version.go
release = draft
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [v0.16.0](https://github.com/tcnksm/ghr/compare/v0.15.0...v0.16.0) - 2022-09-26
- introduce modern releng stack by @Songmu in https://github.com/tcnksm/ghr/pull/141
- Go 1.19 and update deps by @Songmu in https://github.com/tcnksm/ghr/pull/143
- update go-github to v47 by @Songmu in https://github.com/tcnksm/ghr/pull/144
- add freebsd and arm64 to built artifacts by @Songmu in https://github.com/tcnksm/ghr/pull/145
- find a draft release before creating new one by @Songmu in https://github.com/tcnksm/ghr/pull/146

## [v0.15.0](https://github.com/tcnksm/ghr/compare/v0.14.0...v0.15.0) (2022-08-17)

* Allow to use Generate Release Notes function of GitHub [#138](https://github.com/tcnksm/ghr/pull/138) ([neilgierman](https://github.com/neilgierman))
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
const Name = "ghr"

// Version is application version
const Version string = "0.15.0"
const Version string = "0.16.0"

// GitCommit describes latest commit hash.
// This is automatically extracted by git describe --always.
Expand Down

0 comments on commit 04d8099

Please sign in to comment.