Merge branch 'master' of github.com:balena-io/balena-cli into typo

This commit is contained in:
Matthew McGinn 2018-12-31 08:22:32 -05:00
commit 10fff8f0f5
3 changed files with 22 additions and 1 deletions

@ -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! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). 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 ## 9.6.0 - 2018-12-18
* Add push --registry-secrets option for private docker registry authentication [Paulo Castro] * Add push --registry-secrets option for private docker registry authentication [Paulo Castro]

@ -6,6 +6,23 @@ Please make sure your system meets the requirements as specified in the [README]
## Install the CLI ## 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 ### Npm install
The best supported way to install the CLI is from npm: The best supported way to install the CLI is from npm:

@ -1,6 +1,6 @@
{ {
"name": "balena-cli", "name": "balena-cli",
"version": "9.6.0", "version": "9.7.0",
"description": "The official balena CLI tool", "description": "The official balena CLI tool",
"main": "./build/actions/index.js", "main": "./build/actions/index.js",
"homepage": "https://github.com/balena-io/balena-cli", "homepage": "https://github.com/balena-io/balena-cli",