diff --git a/.rcpr b/.rcpr new file mode 100644 index 0000000..e20fb58 --- /dev/null +++ b/.rcpr @@ -0,0 +1,16 @@ +# 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] + releaseBranch = main + versionFile = version.go diff --git a/version.go b/version.go index 826bd8b..218a3fb 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package rcpr -const version = "0.0.8" +const version = "0.0.9" var revision = "HEAD"