From 331c05caa18d03a82ced9c3cf8866c23e047ea4b Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Mon, 12 Oct 2015 21:43:45 -0700 Subject: [PATCH] Adds release information for 2.0.0 version --- .travis.yml | 11 +++++++---- changelog.txt | 12 ++++++++++++ package.json | 18 +++++++++++++++--- 3 files changed, 34 insertions(+), 7 deletions(-) create mode 100644 changelog.txt diff --git a/.travis.yml b/.travis.yml index 5aa66a1e..a2a36da2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ language: node_js node_js: - - "4.1" - - "4.0" - - "0.12" - - "0.10" +- '0.10' +- '0.12' +- '4.0' +- stable +sudo: false +after_script: +- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 00000000..d2a6901d --- /dev/null +++ b/changelog.txt @@ -0,0 +1,12 @@ +important - All accounts created on or after October 13, 2015 must use version 2.0.0 or greater of the CLI to facilitate Google account login. +feature - Added `firebase data:*` commands for accessing and modifying Firebase databases. +feature - Added `firebase serve` local development server for Firebase Hosting. +feature - Added ability to deploy Security Rules and Hosting assets separately. +feature - Added `--token` option for passing an access token in CI environments. +feature - Added `--json` option for machine-readable output. +changed - CLI login now takes place in the browser. +changed - The command `firebase delete-site` is now `firebase disable:hosting`. +changed - All command outputs have been re-worked and made more consistent. +changed - Improved the `firebase init` workflow. +removed - The `firebase bootstrap` command has been removed. +removed - The `--email` and `--password` flags have been removed. diff --git a/package.json b/package.json index 2ca1f846..7d4fac6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firebase-tools", - "version": "2.0.0", + "version": "0.0.0", "description": "Command-Line Interface for Firebase", "main": "index.js", "bin": { @@ -14,9 +14,21 @@ "url": "https://github.com/firebase/firebase-cli.git" }, "keywords": [ + "cdn", "cli", - "firebase" + "ssl", + "cloud", + "hosting", + "firebase", + "realtime", + "websockets", + "synchronization" ], + "preferGlobal": true, + "engines": { + "node": ">=0.10.0" + }, + "engineStrict": true, "author": "Firebase Team", "license": "MIT", "bugs": { @@ -65,7 +77,7 @@ "gulp-exit": "0.0.2", "gulp-istanbul": "^0.10.0", "gulp-mocha": "^2.1.2", - "jshint-stylish": "^2.0.1", + "jshint-stylish": "^2.0.1", "nock": "^2.10.0" } }