Skip to content

Commit

Permalink
Merge pull request #42 from Songmu/rcpr-v0.0.8
Browse files Browse the repository at this point in the history
release v0.0.9
  • Loading branch information
Songmu authored Aug 20, 2022
2 parents 71a1d78 + 258cff4 commit dd8018b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .rcpr
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [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

## [v0.0.8](https://github.com/Songmu/rcpr/compare/v0.0.7...v0.0.8) - 2022-08-18
- refine version file detection by @Songmu in https://github.com/Songmu/rcpr/pull/39

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.8"
const version = "0.0.9"

var revision = "HEAD"

0 comments on commit dd8018b

Please sign in to comment.