@@ -44,39 +44,37 @@ Using this package requires a working Go environment. [See the install instructi
4444
4545Go Modules are required when using this package. [ See the go blog guide on using Go Modules] ( https://blog.golang.org/using-go-modules ) .
4646
47- ### Using ` v2 ` releases
47+ ### Using ` v3 ` releases
4848
49- The ` v2 ` series is the recommended version for new development. Ongoing
50- maintenance is done on the [ ` v2-maint `
51- branch ] ( https://github.com/urfave/cli/tree/v2-maint ) which receives ** minor **
52- improvements, bug fixes, and security fixes .
49+ The latest ` v3 ` release may be installed via the ` /v3 ` suffix. The state of the [ ` main `
50+ branch ] ( https://github.com/urfave/cli/tree/main ) at any given time may correspond to a
51+ ` v3 ` series release or pre-release. Please see the [ ` v3 ` migration
52+ guide ] ( ./migrate-v2-to-v3.md ) on using v3 if you are upgrading from v2 .
5353
5454``` sh
55- go get github.com/urfave/cli/v2 @latest
55+ go get github.com/urfave/cli/v3 @latest
5656```
5757
5858``` go
5959import (
60- " github.com/urfave/cli/v2 " // imports as package "cli"
60+ " github.com/urfave/cli/v3 " // imports as package "cli"
6161)
6262```
6363
64- ### Using ** alpha-level ** ` v3 ` releases
64+ ### Using ` v2 ` releases
6565
66- The latest pre-release in progress on the [ ` main `
67- branch] ( https://github.com/urfave/cli/tree/main ) is the ` v3 ` series which should
68- be considered ** alpha-level** with an unstable API. Occasional ** alpha** tags
69- are pushed to allow for limited stability without pinning to an arbitrary
70- commit. Please see the [ ` v3 ` migration
71- guide] ( ./migrate-v2-to-v3.md ) on using v3 if you are upgrading from v2
66+ The ` v2 ` series is the recommended version for new development. Ongoing
67+ maintenance is done on the [ ` v2-maint `
68+ branch] ( https://github.com/urfave/cli/tree/v2-maint ) which receives ** minor**
69+ improvements, bug fixes, and security fixes.
7270
7371``` sh
74- go get github.com/urfave/cli/v3 @latest
72+ go get github.com/urfave/cli/v2 @latest
7573```
7674
7775``` go
7876import (
79- " github.com/urfave/cli/v3 " // imports as package "cli"
77+ " github.com/urfave/cli/v2 " // imports as package "cli"
8078)
8179```
8280
0 commit comments