Skip to content

Commit 4610166

Browse files
committed
Merge pull request nodegit#484 from nodegit/bump-to-0-3-0
Bump version to 0.3.0
2 parents 63dc9f6 + 6337df4 commit 4610166

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ NodeGit
2929

3030
***NOTE: NodeGit currently does not work with [iojs on windows](https://github.com/rvagg/pangyp/issues/4)***
3131

32-
**Stable: 0.2.7**
32+
**Stable: 0.3.0**
3333

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nodegit",
33
"description": "Node.js libgit2 asynchronous native bindings",
4-
"version": "0.2.7",
4+
"version": "0.3.0",
55
"libgit2": {
66
"url": "https://github.com/nodegit/libgit2/tarball/4b3a1899ff37dddba0a095487505fed9ede101b1",
77
"sha": "4b3a1899ff37dddba0a095487505fed9ede101b1",

test/runner.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ before(function() {
4343
});
4444

4545
beforeEach(function() {
46+
this.timeout(4000);
4647
return exec("git clean -xdf", {cwd: workdirPath})
4748
.then(function() {
4849
return exec("git checkout master", {cwd: workdirPath});

test/tests/revwalk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe("Revwalk", function() {
1111
var reposPath = local("../repos/workdir");
1212

1313
// Set a reasonable timeout here now that our repository has grown.
14-
this.timeout(60000);
14+
this.timeout(120000);
1515

1616
beforeEach(function() {
1717
var test = this;

0 commit comments

Comments
 (0)