File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ All notable changes to this project will be documented in this file. The format
33
44# [ 0.9.3] - 2022-04-16
55## Changed
6- - Parallelized update process
7- - Simplified messages during the update process
8- - Improved error messages
6+ - Parallelized update subcommand process
7+ - Parallelized check subcommand process
8+ - Simplified messages during the update/check process
9+ - Display the latest version after an update in an easily recognizable color
10+ - Improved error messages.
911# [ 0.9.1] - 2022-03-19
1012## Changed
1113- Changed the message at the time of update was incorrect, so the message was corrected.
Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ func (p *Package) CurrentToLatestStr() string {
6767 if IsAlreadyUpToDate (* p .Version ) {
6868 return "Already up-to-date: " + color .GreenString (p .Version .Latest )
6969 }
70- return color .GreenString (p .Version .Current ) + " to " + color .GreenString (p .Version .Latest )
70+ return color .GreenString (p .Version .Current ) + " to " + color .YellowString (p .Version .Latest )
7171}
7272
7373// VersionCheckResultStr returns string about command version check.
7474func (p * Package ) VersionCheckResultStr () string {
7575 if IsAlreadyUpToDate (* p .Version ) {
7676 return "Already up-to-date: " + color .GreenString (p .Version .Latest )
7777 }
78- return "current: " + color .GreenString (p .Version .Current ) + ", latest: " + color .GreenString (p .Version .Latest )
78+ return "current: " + color .GreenString (p .Version .Current ) + ", latest: " + color .YellowString (p .Version .Latest )
7979}
8080
8181// IsAlreadyUpToDate return whether binary is already up to date or not.
You can’t perform that action at this time.
0 commit comments