diff --git a/.rcpr b/.rcpr new file mode 100644 index 0000000..1b6453b --- /dev/null +++ b/.rcpr @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 388cc38..2255f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/version.go b/version.go index 218a3fb..391631c 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package rcpr -const version = "0.0.9" +const version = "0.0.10" var revision = "HEAD"