This commit is contained in:
Juan Cruz Viotti 2016-06-22 16:19:31 -04:00
parent 509fef754e
commit 69c98f4afb
3 changed files with 14 additions and 1 deletions

View File

@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [4.2.0] - 2016-06-22
### Added
- Add `verbose` option to `resin sync`.
## [4.1.0] - 2016-06-22
### Added
@ -235,6 +241,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Remove outdated information from README.
[4.2.0]: https://github.com/resin-io/resin-cli/compare/v4.1.0...v4.2.0
[4.1.0]: https://github.com/resin-io/resin-cli/compare/v4.0.3...v4.1.0
[4.0.3]: https://github.com/resin-io/resin-cli/compare/v4.0.2...v4.0.3
[4.0.2]: https://github.com/resin-io/resin-cli/compare/v4.0.1...v4.0.2

View File

@ -600,6 +600,7 @@ by using the same option names as keys. For example:
- .git
- node_modules/
progress: true
verbose: false
Notice that explicitly passed command options override the ones set in the configuration file.
@ -609,6 +610,7 @@ Examples:
$ resin sync 7cf02a6
$ resin sync 7cf02a6 --port 8080
$ resin sync 7cf02a6 --ignore foo,bar
$ resin sync 7cf02a6 -v
### Options
@ -632,6 +634,10 @@ show progress
ssh port
#### --verbose, -v
increase verbosity
# SSH
## ssh <uuid>

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "4.1.0",
"version": "4.2.0",
"description": "Git Push to your devices",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",