diff --git a/README.md b/README.md index 006edebf..da04e976 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ features listed below may be missing from your installation. ``` Sloc, Cloc and Code. Count lines of code in a directory with complexity estimation. -Version 3.3.0 (beta) +Version 3.3.0 Ben Boyter + Contributors Usage: @@ -250,7 +250,7 @@ Flags: --count-ignore set to allow .gitignore and .ignore files to be counted --currency-symbol string set currency symbol (default "$") --debug enable debug output - -a, --dryness calculate the dryness/wetness of the project (implies --uloc) + -a, --dryness calculate the DRYness of the project (implies --uloc) --eaf float the effort adjustment factor derived from the cost drivers (1.0 if rated nominal) (default 1) --exclude-dir strings directories to exclude (default [.git,.hg,.svn]) -x, --exclude-ext strings ignore file extensions (overrides include-ext) [comma separated list: e.g. go,java,js] @@ -293,7 +293,6 @@ Flags: -v, --verbose verbose output --version version for scc -w, --wide wider output with additional statistics (implies --complexity) - ``` Output should look something like the below for the redis project diff --git a/main.go b/main.go index 600aaf58..5b4da083 100644 --- a/main.go +++ b/main.go @@ -64,7 +64,7 @@ func main() { "dryness", "a", false, - "calculate the dryness/wetness of the project (implies --uloc)", + "calculate the DRYness of the project (implies --uloc)", ) flags.BoolVar( &processor.DisableCheckBinary, diff --git a/processor/processor.go b/processor/processor.go index 3d0c7a09..824db230 100644 --- a/processor/processor.go +++ b/processor/processor.go @@ -20,7 +20,7 @@ import ( ) // Version indicates the version of the application -var Version = "3.3.0 (beta)" +var Version = "3.3.0" // Flags set via the CLI which control how the output is displayed