Skip to content

Commit

Permalink
Merge pull request #100 from k1LoW/tagpr-from-v0.14.3
Browse files Browse the repository at this point in the history
Release for v0.14.4
  • Loading branch information
k1LoW authored Nov 4, 2022
2 parents 08913d4 + 01a536a commit cdf84a8
Show file tree
Hide file tree
Showing 5 changed files with 52 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 = main
versionFile = version/version.go
command = "make prerelease_for_tagpr"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [v0.14.4](https://github.com/k1LoW/ndiag/compare/v0.14.3...v0.14.4) - 2022-11-04
- Use octocov by @k1LoW in https://github.com/k1LoW/ndiag/pull/95
- Bump up go and pkgs by @k1LoW in https://github.com/k1LoW/ndiag/pull/96
- Fix build flags of linux build by @k1LoW in https://github.com/k1LoW/ndiag/pull/97
- packr2 to embed by @k1LoW in https://github.com/k1LoW/ndiag/pull/98
- Fix build pipeline by @k1LoW in https://github.com/k1LoW/ndiag/pull/99

## [v0.14.3](https://github.com/k1LoW/ndiag/compare/v0.14.2...v0.14.3) (2022-02-09)

* Support darwin arm64 [#94](https://github.com/k1LoW/ndiag/pull/94) ([k1LoW](https://github.com/k1LoW))
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ prerelease:
git commit -m'Bump up version number'
git tag ${VER}

prerelease_for_tagpr:
gocredits -w .
git add CHANGELOG.md CREDITS go.mod go.sum

release:
goreleaser --rm-dist

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ package version
const Name string = "ndiag"

// Version for this
var Version = "dev"
var Version = "0.14.4"

0 comments on commit cdf84a8

Please sign in to comment.