diff --git a/package.json b/package.json
index b1545a1..80d872f 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
 {
   "name": "LightPivotTable",
   "author": "ZitRo",
-  "version": "0.6.0",
+  "version": "0.7.0",
   "description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
   "main": "test/testServer.js",
   "directories": {
     "test": "test"
   },
   "devDependencies": {
-    "express": "^4.10.1",
+    "express": "^5.0.0-alpha.1",
     "gulp": "^3.8.10",
     "gulp-clean": "^0.3.1",
     "gulp-concat": "^2.4.1",
diff --git a/readme.md b/readme.md
index 8b9c907..2375564 100644
--- a/readme.md
+++ b/readme.md
@@ -39,8 +39,9 @@ var setup = { // Object that contain settings. Any setting may be missed.
             MDX2JSONSource: "http://localhost:57772/SAMPLES", // MDX2JSON source server address
             basicMDX: "SELECT NON EMPTY [Product].[P1].[Product Category].Members ON 0, NON EMPTY [Outlet].[H1].[Region].Members ON 1 FROM [HoleFoods]" // basic MDX which are going to be rendered when widget loads
         }
+        , caption: "My table" // if set, table basic caption will be replaced by this text
         , showSummary: true // show summary by columns
-        , formatNumbers: "#,###.##" // number formatting mask
+        , formatNumbers: "#,###.##" // number formatting mask // @deprecated
         , drillDownTarget: "dashboard name.dashboard" // custom drilldown target, DeepSee only.
     },
     lp = new LightPivotTable(setup);
diff --git a/source/js/DataSource.js b/source/js/DataSource.js
index 4bd8dee..4a650d2 100644
--- a/source/js/DataSource.js
+++ b/source/js/DataSource.js
@@ -157,7 +157,7 @@ DataSource.prototype.getCurrentData = function (callback) {
 
         var data = ready.data;
 
-        console.log("Retrieved data:", ready);
+        //console.log("Retrieved data:", ready);
 
         (data.Info || {}).action = _.ACTION;
         if (_.ACTION === "MDXDrillthrough") {