Skip to content

Commit

Permalink
Bump to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Plourde committed Aug 7, 2014
1 parent f419aeb commit 9a63baf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uchiwa",
"version": "0.2.0",
"version": "0.2.1",
"private": true,
"scripts": {
"postinstall": "bower --allow-root install",
Expand Down
4 changes: 2 additions & 2 deletions public/js/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ constantModule.constant('settings', {
* Version
*/
constantModule.constant('version', {
uchiwa: '0.2.0'
});
uchiwa: '0.2.1'
});

0 comments on commit 9a63baf

Please sign in to comment.