From 88a3d2edf48406719586cb15752625776508ce90 Mon Sep 17 00:00:00 2001 From: zeMirco Date: Thu, 17 Apr 2014 21:39:48 +0200 Subject: [PATCH] update changelog --- History.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/History.md b/History.md index 87b986f..5360982 100644 --- a/History.md +++ b/History.md @@ -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`