From 9a63baf2cc06bfa77ca6d6b5f2940e55c9ebfa97 Mon Sep 17 00:00:00 2001 From: Simon Plourde Date: Thu, 7 Aug 2014 16:09:17 -0400 Subject: [PATCH] Bump to 0.2.1 --- CHANGELOG.md | 10 +++++++++- README.md | 4 ++-- package.json | 2 +- public/js/constants.js | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d1aa49..e589499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ +### 0.2.1 (2014-08-07) + +#### Features +- Navbar icon now links to related page + +#### Bug Fixes +- Perform a deep clone for public config display (Issue #78) + ### 0.2.0 (2014-08-07) -####Features +#### Features - New user interface! (Issue #55) - Temporarily silence an element - Filter and order by attributes diff --git a/README.md b/README.md index 7d42183..8d34060 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ The dashboard is under active development, and major changes are not uncommon. * Checkout the source: `git clone https://github.com/sensu/uchiwa.git` * Install bower on your system: `npm install -g bower` * Install the dependencies: - * With root user: `npm install --unsafe-perm` - * With normal user: `npm install` + * With root user: `npm install --production --unsafe-perm` + * With normal user: `npm install --production` * Copy **config.json.example** to **config.json** - modify your Sensu API information. See configuration section below * Start the dashboard: `node app.js` * Open your browser: `http://localhost:3000/` diff --git a/package.json b/package.json index 8d5e128..b48d2c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uchiwa", - "version": "0.2.0", + "version": "0.2.1", "private": true, "scripts": { "postinstall": "bower --allow-root install", diff --git a/public/js/constants.js b/public/js/constants.js index 4991f49..7992330 100644 --- a/public/js/constants.js +++ b/public/js/constants.js @@ -11,5 +11,5 @@ constantModule.constant('settings', { * Version */ constantModule.constant('version', { - uchiwa: '0.2.0' -}); \ No newline at end of file + uchiwa: '0.2.1' +});