Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed May 2, 2024
1 parent a120913 commit 7e0b8c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]> + Contributors
Usage:
Expand All @@ -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]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7e0b8c1

Please sign in to comment.