Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zemirco committed Apr 17, 2014
1 parent 66ba1d2 commit 88a3d2e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@


##### 0.4.0 - 2014-04-17

- database config has to be an Object and the database name isn't part of the
connection string anymore

**old**

```js
exports.db = 'mongodb://127.0.0.1/test';
exports.dbCollection = 'users';
```

**new**

```js
exports.db = {
url: 'mongodb://127.0.0.1/',
name: 'test',
collection: 'users'
};
```

##### 0.3.0 - 2014-04-11

- key `username` is now `name`
Expand Down

0 comments on commit 88a3d2e

Please sign in to comment.