Skip to content

Commit

Permalink
# documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Pablo Garcia Dalolla committed Aug 20, 2011
1 parent f0959ef commit 66a7966
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions History.md
@@ -1,8 +1,10 @@
0.1.1 / TDB
==================
* Adding remaining Blob functionality:
* Added remaining Blob functionality:
- Retrieve and update blob metadata + properties
- Delete blobs
- Copy
- Delete
* Service & CoreService refactoring

0.1.0 / 2011-07-31
==================
Expand Down
10 changes: 7 additions & 3 deletions Readme.md
Expand Up @@ -76,10 +76,14 @@ To install via npm
// Getting blob's contents
blob.getContents(function(err, data){

// Copying a blob
blob.copy('container/newFolder/my file_copy.txt', function(err, newBlob){
});

// Removing a blob
blob.destroy(function(err){
});
});
});
});
Expand All @@ -105,7 +109,7 @@ To install via npm
* SharedAccessSignature

## Blobs
* Copy / Delete / Snapshot
* Snapshot
* Update contents
* Blocks

Expand Down
2 changes: 1 addition & 1 deletion lib/waz-storage/index.js
Expand Up @@ -10,4 +10,4 @@ exports = module.exports = require('./base');
* @type String
*/

exports.version = '0.1.0';
exports.version = '0.1.1';

0 comments on commit 66a7966

Please sign in to comment.