From 64ec151e4bd8a9502169564b919949fc37f7ebba Mon Sep 17 00:00:00 2001 From: Trevor Sullivan Date: Thu, 27 Dec 2018 12:33:12 -0800 Subject: [PATCH 1/2] Added documentation about the dependencies required to build balena-cli Change-type: minor Signed-off-by: Trevor Sullivan --- doc/cli.markdown | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/cli.markdown b/doc/cli.markdown index 8dc2ced1..a1267330 100644 --- a/doc/cli.markdown +++ b/doc/cli.markdown @@ -6,6 +6,23 @@ Please make sure your system meets the requirements as specified in the [README] ## Install the CLI +### Dependencies + +Before installing the Balena CLI from npm, make sure you have the following dependencies installed: + +* make +* g++ compiler +* Python 2.7 +* git + +For example, to install these packages on a Debian-based Linux operating systems: + +``` +$ sudo apt-get install g++ make python git --yes +``` + +**NOTE**: If you are installing the stand-alone binary CLI, you will not need to install these dependencies. + ### Npm install The best supported way to install the CLI is from npm: From 8ee994ce7d2951566db3cf77f4bf7cc5dc999267 Mon Sep 17 00:00:00 2001 From: Resin CI <34882892+resin-ci@users.noreply.github.com> Date: Fri, 28 Dec 2018 23:11:23 +0100 Subject: [PATCH 2/2] v9.7.0 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e882034..109aef72 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/). +## 9.7.0 - 2018-12-28 + +* Added documentation about the dependencies required to build balena-cli [Trevor Sullivan] + ## 9.6.0 - 2018-12-18 * Add push --registry-secrets option for private docker registry authentication [Paulo Castro] diff --git a/package.json b/package.json index e72f83a6..3d252a3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "balena-cli", - "version": "9.6.0", + "version": "9.7.0", "description": "The official balena CLI tool", "main": "./build/actions/index.js", "homepage": "https://github.com/balena-io/balena-cli",