Skip to content

Commit 71dbc63

Browse files
committed
Merge remote-tracking branch 'origin/main' into v3-dev-main
2 parents 5be9100 + 9e59db8 commit 71dbc63

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/ISSUE_TEMPLATE/v1-bug-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _**( Put the version of urfave/cli that you are using here )**_
1414
## Checklist
1515

1616
- [ ] Are you running the latest v1 release? The list of releases is [here](https://github.com/urfave/cli/releases).
17-
- [ ] Did you check the manual for your release? The v1 manual is [here](https://github.com/urfave/cli/blob/master/docs/v1/manual.md).
17+
- [ ] Did you check the manual for your release? The v1 manual is [here](https://github.com/urfave/cli/blob/main/docs/v1/manual.md).
1818
- [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
1919

2020
## Dependency Management

.github/ISSUE_TEMPLATE/v2-bug-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _**( Put the version of urfave/cli that you are using here )**_
1414
## Checklist
1515

1616
- [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases).
17-
- [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md)
17+
- [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/main/docs/v2/manual.md)
1818
- [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
1919

2020
## Dependency Management

.github/ISSUE_TEMPLATE/v2-feature-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
## Checklist
1111

1212
* [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases).
13-
* [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md).
13+
* [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/main/docs/v2/manual.md).
1414
* [ ] Did you perform a search about this feature? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
1515

1616
## What problem does this solve?

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ cli
44
[![GoDoc](https://godoc.org/github.com/urfave/cli?status.svg)](https://pkg.go.dev/github.com/urfave/cli/v2)
55
[![codebeat](https://codebeat.co/badges/0a8f30aa-f975-404b-b878-5fab3ae1cc5f)](https://codebeat.co/projects/gb.xjqchip.workers.dev-urfave-cli)
66
[![Go Report Card](https://goreportcard.com/badge/urfave/cli)](https://goreportcard.com/report/urfave/cli)
7-
[![codecov](https://codecov.io/gh/urfave/cli/branch/master/graph/badge.svg)](https://codecov.io/gh/urfave/cli)
7+
[![codecov](https://codecov.io/gh/urfave/cli/branch/main/graph/badge.svg)](https://codecov.io/gh/urfave/cli)
88

99
cli is a simple, fast, and fun package for building command line apps in Go. The
1010
goal is to enable developers to write fast and distributable command line
1111
applications in an expressive way.
1212

1313
## Usage Documentation
1414

15-
Usage documentation exists for each major version. Don't know what version you're on? You're probably using the version from the `master` branch, which is currently `v2`.
15+
Usage documentation exists for each major version. Don't know what version you're on? You're probably using the version from the `main` branch, which is currently `v2`.
1616

1717
- `v2` - [./docs/v2/manual.md](./docs/v2/manual.md)
1818
- `v1` - [./docs/v1/manual.md](./docs/v1/manual.md)
@@ -67,4 +67,4 @@ export PATH=$PATH:$GOPATH/bin
6767

6868
cli is tested against multiple versions of Go on Linux, and against the latest
6969
released version of Go on OS X and Windows. This project uses Github Actions for
70-
builds. To see our currently supported go versions and platforms, look at the [./.github/workflows/cli.yml](https://github.com/urfave/cli/blob/master/.github/workflows/cli.yml).
70+
builds. To see our currently supported go versions and platforms, look at the [./.github/workflows/cli.yml](https://github.com/urfave/cli/blob/main/.github/workflows/cli.yml).

app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
var (
15-
changeLogURL = "https://github.com/urfave/cli/blob/master/docs/CHANGELOG.md"
15+
changeLogURL = "https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md"
1616
appActionDeprecationURL = fmt.Sprintf("%s#deprecated-cli-app-action-signature", changeLogURL)
1717
contactSysadmin = "This is an error in the application. Please contact the distributor of this application if this is not you."
1818
errInvalidActionType = NewExitError("ERROR invalid Action type. "+

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Feel free to put up a pull request to fix a bug or maybe add a feature. We will
66
give it a code review and make sure that it does not break backwards
77
compatibility. If collaborators agree that it is in line with
88
the vision of the project, we will work with you to get the code into
9-
a mergeable state and merge it into the master branch.
9+
a mergeable state and merge it into the main branch.
1010

1111
If you have contributed something significant to the project, we will most
1212
likely add you as a collaborator. As a collaborator you are given the ability

0 commit comments

Comments
 (0)