Skip to content

Commit

Permalink
Update liblzma to 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax committed Feb 26, 2015
1 parent 37bab9d commit 1032546
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
[
{
"action_name" : "build",
# a hack to run deps/xz-5.2.0 ./configure during `node-gyp configure`
'inputs': ['<!@(sh liblzma-config.sh <(module_root_dir)/build <(module_root_dir)/deps/xz-5.2.0.tar.bz2)'],
# a hack to run deps/xz-5.2.1 ./configure during `node-gyp configure`
'inputs': ['<!@(sh liblzma-config.sh <(module_root_dir)/build <(module_root_dir)/deps/xz-5.2.1.tar.bz2)'],
'outputs': [''],
'action': [
# run deps/mhash `make`
Expand Down
Binary file removed deps/xz-5.2.0.tar.bz2
Binary file not shown.
Binary file removed deps/xz-5.2.0.tar.bz2.sig
Binary file not shown.
Binary file added deps/xz-5.2.1.tar.bz2
Binary file not shown.
Binary file added deps/xz-5.2.1.tar.bz2.sig
Binary file not shown.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var extend = require('util-extend');

extend(exports, native);

exports.version = '0.2.9';
exports.version = '0.2.10';

var Stream = exports.Stream;

Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lzma-native",
"version": "0.2.9",
"version": "0.2.10",
"engines": { "node": ">=0.8" },
"author": {
"name": "Hauke Henningsen",
Expand Down Expand Up @@ -33,7 +33,8 @@
"url": "https://github.com/addaleax/lzma-native.git"
},
"scripts": {
"install": "node-gyp rebuild"
"install": "node-gyp rebuild",
"test": "mocha -s 200 test"
},
"gypfile": true,
"bugs": {
Expand All @@ -43,8 +44,5 @@
"mocha": "*",
"istanbul": "*",
"coveralls": "git+https://github.com/addaleax/node-coveralls.git#write-to-stdout"
},
"scripts": {
"test": "mocha -s 200 test"
}
}

0 comments on commit 1032546

Please sign in to comment.