From 0d7d6de7cd4e203dc01102a890008c0feeb787ea Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 22 Jun 2016 09:46:18 -0400 Subject: [PATCH] v4.1.0 --- CHANGELOG.md | 7 +++++++ doc/cli.markdown | 11 ++++++++--- package.json | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea7252f..124c4137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.0] - 2016-06-22 + +### Added + +- Add `verbose` option to `resin ssh`. + ## [4.0.3] - 2016-05-17 ### Changed @@ -229,6 +235,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Remove outdated information from README. +[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 [4.0.1]: https://github.com/resin-io/resin-cli/compare/v4.0.0...v4.0.1 diff --git a/doc/cli.markdown b/doc/cli.markdown index 2743d167..3c909423 100644 --- a/doc/cli.markdown +++ b/doc/cli.markdown @@ -645,6 +645,7 @@ Examples: $ resin ssh 7cf02a6 $ resin ssh 7cf02a6 --port 8080 + $ resin ssh 7cf02a6 -v ### Options @@ -652,6 +653,10 @@ Examples: ssh gateway port +#### --verbose, -v + +increase verbosity + # Notes ## note <|note> @@ -729,7 +734,7 @@ drive ## config read -Use this command to read the config.json file from a provisioned device +Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device" Examples: @@ -748,7 +753,7 @@ drive ## config write <key> <value> -Use this command to write the config.json file of a provisioned device +Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device Examples: @@ -768,7 +773,7 @@ drive ## config inject <file> -Use this command to inject a config.json file to a provisioned device +Use this command to inject a config.json file to the mounted filesystem (e.g. SD card) of a provisioned device" Examples: diff --git a/package.json b/package.json index a33688fd..ddc3111b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "resin-cli", - "version": "4.0.3", + "version": "4.1.0", "description": "Git Push to your devices", "main": "./build/actions/index.js", "homepage": "https://github.com/resin-io/resin-cli",