Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentracine committed Dec 16, 2016
1 parent 6bd3bd1 commit 297abc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "pocketjs",
"version": "1.0.5",
"version": "2.0.0",
"description": "localStorage wrapper which exposes a simple MongoDB-like syntax ",
"main": "index.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions src/Pocket.js
@@ -1,5 +1,5 @@
/**
* Pocket.js v1.0.5
* Pocket.js v2.0.0
*
* @file A blazing fast lightweight storage library
* @author Vincent Racine vincentracine@hotmail.co.uk
Expand Down Expand Up @@ -259,7 +259,7 @@ function Pocket(options){
* @returns {Store}
*/
function Store(options){
this.version = '1.0.5';
this.version = '2.0.0';
this.collections = {};
this.options = Utils.merge({dbname: "pocket", driver:Pocket.Drivers.DEFAULT}, options || {});

Expand Down

0 comments on commit 297abc5

Please sign in to comment.