Skip to content

Commit

Permalink
Merge 3fcbbe4 into dc5667b
Browse files Browse the repository at this point in the history
  • Loading branch information
tbranyen committed Apr 21, 2015
2 parents dc5667b + 3fcbbe4 commit 04bbe6b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ NodeGit
</tbody>
</table>

**Stable: 0.3.3**
**Stable: 0.4.0**

## Have a problem? Come chat with us! ##

Expand Down
4 changes: 2 additions & 2 deletions lifecycleScripts/checkPrepared.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ function checkVendor(name, skipVersion) {
var version = "";
if (!skipVersion) {
var vendorPackage = pkg[name];
if (NODE_VERSION === 0.1 && vendorPackage["0.10"]) {
vendorPackage = vendorPackage["0.10"];
if (vendorPackage[NODE_VERSION]) {
vendorPackage = vendorPackage[NODE_VERSION];
}
version = vendorPackage.sha || vendorPackage.version;
}
Expand Down
4 changes: 2 additions & 2 deletions lifecycleScripts/retrieveExternalDependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ module.exports = function retrieveExternalDependencies() {
function getVendorLib(name) {
var vendorPath = "vendor/" + name + "/";
var vendorPackage = pkg[name];
if (NODE_VERSION === 0.1 && vendorPackage["0.10"]) {
vendorPackage = vendorPackage["0.10"];
if (vendorPackage[NODE_VERSION]) {
vendorPackage = vendorPackage[NODE_VERSION];
}

var version = vendorPackage.sha || vendorPackage.version;
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.3.3",
"version": "0.4.0",
"libgit2": {
"url": "https://github.com/libgit2/libgit2/tarball/fb6df50b7f250a4fd8b2fab257f119a5185e9bf5",
"sha": "fb6df50b7f250a4fd8b2fab257f119a5185e9bf5",
"version": "0.22.2"
},
"libssh2": {
"url": "http://www.libssh2.org/download/libssh2-1.4.3.tar.gz",
"version": "1.4.3"
"url": "http://www.libssh2.org/download/libssh2-1.5.0.tar.gz",
"version": "1.5.0"
},
"http_parser": {
"url": "https://github.com/joyent/http-parser/archive/v2.3.tar.gz",
"version": "2.3.0",
"0.10": {
"url": "https://github.com/joyent/http-parser/archive/v2.4.2.tar.gz",
"version": "2.4.2",
"0.1": {
"url": "https://github.com/joyent/http-parser/archive/v2.0.tar.gz",
"version": "2.0.0"
}
Expand Down Expand Up @@ -54,27 +54,27 @@
"node-pre-gyp"
],
"dependencies": {
"fs-extra": "^0.16.3",
"node-pre-gyp": "^0.6.2",
"nodegit-promise": "^2.0.0",
"npm": "^2.5.0",
"fs-extra": "^0.18.2",
"node-pre-gyp": "^0.6.4",
"nodegit-promise": "^2.0.1",
"npm": "^2.8.3",
"promisify-node": "^0.1.5",
"which-native-nodish": "^1.0.3"
"which-native-nodish": "^1.1.1"
},
"devDependencies": {
"combyne": "^0.6.5",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"js-beautify": "^1.5.4",
"jshint": "^2.6.0",
"istanbul": "^0.3.13",
"js-beautify": "^1.5.5",
"jshint": "^2.7.0",
"lcov-result-merger": "^1.0.2",
"lodash": "^3.1.0",
"mocha": "~2.1.0",
"lodash": "^3.7.0",
"mocha": "^2.2.4",
"nan": "^1.7.0",
"nw-gyp": "^0.12.4",
"pangyp": "^2.1.0",
"request": "^2.53.0",
"tar": "^1.0.3"
"request": "^2.55.0",
"tar": "^2.1.0"
},
"binary": {
"module_name": "nodegit",
Expand Down

0 comments on commit 04bbe6b

Please sign in to comment.