diff --git a/README.md b/README.md index cea6e09..93f896f 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,12 @@ up-npm [flags] | Flag | Description | |--------------------- |------------------------------------------------------------- | -| --no-dev | Exclude dev dependencies. Default `false`. | -| -f, --filter `string` | Filter dependencies by package name | +| -h, --help | Display help information for up-npm. | | --allow-downgrade | Allows downgrading a if latest version is older than current. | | --file `string` | Default `package.json`. | -| -h, --help | Display help information for up-npm. | +| -f, --filter `string` | Filter dependencies by package name | +| --no-dev | Exclude dev dependencies. Default `false`. | +| --update-patches | Update patch versions automatically. Default `false`. | | -v, --version | Display the version number for up-npm. | diff --git a/cmd/updater/root.go b/cmd/updater/root.go index fba1b6b..b4609ba 100644 --- a/cmd/updater/root.go +++ b/cmd/updater/root.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" ) -const __VERSION__ string = "4.3.1" +const __VERSION__ string = "4.4.0" var Cfg = npm.CmdFlags{ NoDev: false,