diff --git a/README.md b/README.md index 578885e..1246261 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ that threshold and host the full set of allowed IP addresses at the SPF owners d | Name | Data type | Description | | ---| --- | --- | | `dryrun` | flag | Run without making changes to the DNS backend. | -| `verbose` | flag | Increase actions logged by spf_packer. | +| `verbose` | flag | Increase verbosity of actions performed by spf_packer. | | `help` | flag | Command line help. | | `config` | argument | The filename of the YAML configuration file used by spf_packer. | diff --git a/spf_packer.go b/spf_packer.go index 234bb0b..8b63d75 100644 --- a/spf_packer.go +++ b/spf_packer.go @@ -231,7 +231,7 @@ type Version struct { } func main() { - version := Version{1, 0, 0} + version := Version{1, 0, 3} if len(os.Args) < 2 { usage(os.Args[0], version) os.Exit(1)