Skip to content

Commit

Permalink
Merge pull request #44 from Songmu/rcpr-v0.0.9
Browse files Browse the repository at this point in the history
release v0.0.10
  • Loading branch information
Songmu authored Aug 20, 2022
2 parents ce2f76b + 9349d1b commit 376adb6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .rcpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# config file for the rcpr in git config format
# The rcpr generates the initial configuration, which you can rewrite to suit your environment.
# CONFIGURATIONS:
# rcpr.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.
#
# rcpr.versinFile
# A 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.
#
# rcpr.v-prefix
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
[rcpr]
v-prefix = true
releaseBranch = main
versionFile = version.go
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [v0.0.10](https://github.com/Songmu/rcpr/compare/v0.0.9...v0.0.10) - 2022-08-20
- config rcpr.v-prefix by @Songmu in https://github.com/Songmu/rcpr/pull/45

## [v0.0.9](https://github.com/Songmu/rcpr/compare/v0.0.8...v0.0.9) - 2022-08-20
- implement configuration file by @Songmu in https://github.com/Songmu/rcpr/pull/41
- skip version file detection with document files by @Songmu in https://github.com/Songmu/rcpr/pull/43
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package rcpr

const version = "0.0.9"
const version = "0.0.10"

var revision = "HEAD"

0 comments on commit 376adb6

Please sign in to comment.