Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release for v0.0.13 #69

Merged
merged 2 commits into from
Aug 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [v0.0.13](https://github.com/Songmu/tagpr/compare/v0.0.12...v0.0.13) - 2022-08-28
- add actions.yml to support GitHub Actions by @Songmu in https://github.com/Songmu/tagpr/pull/63
- support to specify multiple version files by comma separated string in conf by @Songmu in https://github.com/Songmu/tagpr/pull/65
- adjust bumping version file behavior by @Songmu in https://github.com/Songmu/tagpr/pull/66
- remove generated comment in CHANGELOG.md by @Songmu in https://github.com/Songmu/tagpr/pull/67
- rename tool name to tagpr from rcpr by @Songmu in https://github.com/Songmu/tagpr/pull/68

## [v0.0.12](https://github.com/Songmu/tagpr/compare/v0.0.11...v0.0.12) - 2022-08-27
- adjust default pull request body by @Songmu in https://github.com/Songmu/tagpr/pull/52
- fix remote name detection by @Songmu in https://github.com/Songmu/tagpr/pull/54
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
version:
description: "A version to install tagpr"
required: false
default: "v0.0.12"
default: "v0.0.13"
runs:
using: "composite"
steps:
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 tagpr

const version = "0.0.12"
const version = "0.0.13"

var revision = "HEAD"