doc/news.texi | 7 +++++++ log.go | 2 +- usage.go | 2 +- diff --git a/doc/news.texi b/doc/news.texi index 5305b1d2cd2bc6dabd045dec4bb0930d1d64dcfc672977b232582caefa19dc39..decf97c7bceaae5c242437ea7cffd6fc697a4c7f4188ca399b79d8441a345160 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -1,6 +1,13 @@ @node News @unnumbered News +@anchor{Release 0.11.1} +@section Release 0.11.1 +@itemize +@item + @option{-debug} option renamed to shorter @option{-d}. +@end itemize + @anchor{Release 0.11.0} @section Release 0.11.0 @itemize diff --git a/log.go b/log.go index febee4a1747aa271f008dd643524da034e7eea054422ce27c2031554d965f970..2ae37ecad817b614e32c3b0cb715736bfa63fcd185e80302aa677f840185a362 100644 --- a/log.go +++ b/log.go @@ -62,7 +62,7 @@ CReset string CNone string = "NONE" flagNoProgress = flag.Bool("no-progress", false, fmt.Sprintf("no progress printing (%s=1), also implies -no-status", EnvNoProgress)) - flagDebug = flag.Bool("debug", false, fmt.Sprintf("enable debug logging (%s=1)", EnvDebug)) + flagDebug = flag.Bool("d", false, fmt.Sprintf("enable debug logging (%s=1)", EnvDebug)) flagLogWait = flag.Bool("log-wait", false, fmt.Sprintf("enable wait messages logging (%s=1)", EnvLogWait)) flagLogLock = flag.Bool("log-lock", false, fmt.Sprintf("enable lock messages logging (%s=1)", EnvLogLock)) flagLogPid = flag.Bool("log-pid", false, fmt.Sprintf("append PIDs (%s=1)", EnvLogPid)) diff --git a/usage.go b/usage.go index 874c9da154f676615325a7b876cd07654fb89c45f6354fd3f8976ef77d7e9efa..2f8a0e62f6e84fabc032225f3223d2647bc1b9b20cdb57a891c2b23b1506a415 100644 --- a/usage.go +++ b/usage.go @@ -26,7 +26,7 @@ "strings" ) const ( - Version = "0.11.0" + Version = "0.11.1" Warranty = `This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.