Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
fetch-depth: 0

- name: 'Codeowners Plus'
uses: multimediallc/codeowners-plus@v1.5.0
uses: multimediallc/codeowners-plus@v1.6.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
pr: '${{ github.event.pull_request.number }}'
Expand Down
2 changes: 1 addition & 1 deletion tools/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func main() {
app := &cli.App{
Name: "codeowners-cli",
Usage: "CLI tool for working with .codeowners files",
Version: "v1.5.1.dev",
Version: "v1.6.1.dev",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The new development version string v1.6.1.dev appears to be malformed. It should likely be v1.6.1.dev. This seems to be caused by a bug in the post-release.sh script, which incorrectly parses the version tag by including the 'v' prefix as part of the major version number. While fixing the script is outside the scope of this PR's changes, correcting the version string here is recommended. You should also consider fixing the script to prevent this from happening in future releases.

Suggested change
Version: "v1.6.1.dev",
Version: "v1.6.1.dev",

Description: "",
Commands: []*cli.Command{
{
Expand Down
Loading