From 4a2fa5a81a2c62719ce05dd5e16fa2c374e06f96 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Sat, 15 Mar 2014 21:30:03 +0400 Subject: [PATCH] 0.1.0 released --- README.md | 6 +++--- package.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12c25b2..934d564 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ bower install pako Example & API ------------- -[Full docs](http://nodeca.github.io/pako/). +Full docs - http://nodeca.github.io/pako/ ```javascript var pako = require('pako'); @@ -97,7 +97,7 @@ var inflator = new pako.Inflate(); inflator.push(chunk1, false); inflator.push(chunk2, false); ... -inflator.push(chunkN, true); // true -> last +inflator.push(chunkN, true); // true -> last chunk if (inflator.err) { console.log(inflator.msg); @@ -111,7 +111,7 @@ var output = inflator.result; Notes ----- -Pako does not contains some specific zlib functions: +Pako does not contain some specific zlib functions: - __deflate__ - writing custom gzip headers and methods `deflateSetDictionary`, `deflateParams`, `deflateSetHeader`, `deflateBound`, `deflatePending`. diff --git a/package.json b/package.json index dbd9056..6773a74 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name" : "pako", - "description" : "zlib port to javascript - fast, modularized, with browser support.", - "version" : "0.0.0", + "description" : "zlib port to javascript - fast, modularized, with browser support", + "version" : "0.1.0", "keywords" : [ "zlib", "deflate", "inflate", "gzip" ], "homepage" : "https://github.com/nodeca/pako",