diff --git a/.travis.yml b/.travis.yml index dacfda0..24195ee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pip install --user cpplint; else - pip install cpplint; + pip2 install cpplint; fi script: - npm test diff --git a/CHANGELOG.md b/CHANGELOG.md index 56caf03..2c83194 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/). +## v1.3.6 - 2017-12-12 + +* Test(ci): Fix pip -> pip2 on Travis CI #60 [Jonas Hermsmeier] + ## v1.3.5 - 2017-10-19 * Chore(scripts): Run CI on x86 as well #58 [Jonas Hermsmeier] diff --git a/package.json b/package.json index 9d7d690..2b479de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mountutils", - "version": "1.3.5", + "version": "1.3.6", "main": "index.js", "description": "Cross platform mount related utilities", "homepage": "https://github.com/resin-io-modules/mountutils",