Skip to content

Commit

Permalink
Upgraded to the latest version of all the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
serg-io committed Mar 31, 2013
1 parent 22a55b6 commit 0b8475e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,4 +1,4 @@
Copyright (c) 2012, Sergio Alcantara
Copyright (c) 2013, Sergio Alcantara
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -207,4 +207,4 @@ Examples
complete: function(book, response) {}
});
// Note: Binary sets are also supported. Just set an attribute's value to an array of `Buffer` instances.
})
});
2 changes: 1 addition & 1 deletion backbone-dynamodb.js
@@ -1,5 +1,5 @@
/**
backbone-dynamodb 0.1.0 - (c) 2012 Sergio Alcantara
backbone-dynamodb 0.2.0 - (c) 2013 Sergio Alcantara
Server side (Node.js) `Backbone.sync()` DynamoDB implementation
@module DynamoDB
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"name": "backbone-dynamodb",
"author": "Sergio Alcantara <iserg9@gmail.com> (https://github.com/serg-io)",
"description": "Backbone.js sync for DynamoDB",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/serg-io/backbone-dynamodb",
"keywords": ["backbone", "dynamodb", "dyndb", "aws", "amazon"],
"repository": {
Expand All @@ -11,9 +11,9 @@
},
"main": "backbone-dynamodb.js",
"dependencies": {
"dyndb": "0.1.0",
"underscore": "1.4.3",
"backbone": "0.9.2",
"node-uuid": "1.3.3"
"dyndb": "0.2.0",
"underscore": "1.4.4",
"backbone": "1.0.0",
"node-uuid": "1.4.0"
}
}
6 changes: 6 additions & 0 deletions tests/binary.js
@@ -1,3 +1,9 @@
/**
* Use nodeunit to run this test.
* Before running this test, create a table called 'Books' with 'isbn',
* which is a number, as the hash key.
*/

var fs = require('fs'),
_ = require('underscore'),
dataset = require('./dataset.js'),
Expand Down
7 changes: 5 additions & 2 deletions tests/crud.js
@@ -1,5 +1,8 @@
// Use nodeunit to run this test
// Create a table called 'Books' before running this test.
/**
* Use nodeunit to run this test.
* Before running this test, create a table called 'Books' with 'isbn',
* which is a number, as the hash key.
*/

var _ = require('underscore'),
dataset = require('./dataset.js'),
Expand Down

0 comments on commit 0b8475e

Please sign in to comment.