From 34f24fe3313ee0c075459010b2fa054db8d8cefd Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Fri, 22 Dec 2017 16:07:19 +0100 Subject: [PATCH 1/2] Fix deprecation warning for os configure, when passing a bare UUID Change-Type: patch --- lib/actions/os.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/actions/os.coffee b/lib/actions/os.coffee index b7c70e49..7bd6ca2e 100644 --- a/lib/actions/os.coffee +++ b/lib/actions/os.coffee @@ -254,7 +254,8 @@ exports.configure = ''' if params.uuid console.warn( - 'Directly passing a UUID to `resin os configure` is deprecated. Pass it with --uuid instead.' + + 'Directly passing a UUID to `resin os configure` is deprecated, and will stop working in future.\n' + + 'Pass your device UUID with --device instead.' + if params.deviceApiKey ' Device api keys can be passed with --deviceApiKey.\n' else '\n' From eb945b3315d08b7c6e12d9c80805aa78882a8240 Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Tue, 2 Jan 2018 10:49:06 +0000 Subject: [PATCH 2/2] v6.12.1 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2330644..2f2f15b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +## v6.12.1 - 2018-01-02 + +* Fix deprecation warning for os configure, when passing a bare UUID #744 [Tim Perry] + ## v6.12.0 - 2017-12-19 * Add ssh option for direct host OS access #737 [Andreas Fitzek] diff --git a/package.json b/package.json index 1de53376..dd5e79cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "resin-cli", - "version": "6.12.0", + "version": "6.12.1", "description": "The official resin.io CLI tool", "main": "./build/actions/index.js", "homepage": "https://github.com/resin-io/resin-cli",