From 5fc456439a946169e3b914dc1846e6c9b785cd9c Mon Sep 17 00:00:00 2001 From: Kimmo Brunfeldt Date: Sat, 14 May 2016 13:03:48 +0300 Subject: [PATCH] Release 2.1.0 --- README.md | 2 +- package.json | 4 ++-- tools/release.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e707ca54..37fa51d4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/kimmobrunfeldt/concurrently.svg)](https://travis-ci.org/kimmobrunfeldt/concurrently) -**Version: 2.0.0** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/1.0.0)) +**Version: 2.1.0** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/2.0.0)) Run multiple commands concurrently. Like `npm run watch-js & npm run watch-less` but better. diff --git a/package.json b/package.json index 5983afe9..ba597954 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "concurrently", - "version": "2.0.0-dev", + "version": "2.1.0", "description": "Run commands concurrently", "main": "src/main.js", "bin": { @@ -46,4 +46,4 @@ "shelljs": "^0.3.0", "string": "^3.0.0" } -} +} \ No newline at end of file diff --git a/tools/release.js b/tools/release.js index 0aa980f3..95ed5e2a 100755 --- a/tools/release.js +++ b/tools/release.js @@ -107,7 +107,7 @@ function mergeArgsToDefaults(config) { if (program.args[0]) { config.bumpType = program.args[0]; - if (!_.contains(['major', 'minor', 'patch'], config.bumpType)) { + if (!_.includes(['major', 'minor', 'patch'], config.bumpType)) { console.error('Error:', config.bumpType, 'is not a valid bump type'); process.exit(1); }