Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ script:

after_success:
- if [ -n "$TRAVIS_TAG" ]; then
npm install -g node-pre-gyp
npm install -g aws-sdk
node lifecycleScripts/clean
node-pre-gyp package
node-pre-gyp publish
npm install -g node-pre-gyp;
npm install -g aws-sdk;
node lifecycleScripts/clean;
node-pre-gyp package;
node-pre-gyp publish;
fi

- if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ] && [ $TRAVIS_OS_NAME == "linux" ] && [ $NODE_VERSION == "4.1" ]; then
Expand Down
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Change Log

## [0.6.3](https://github.com/nodegit/nodegit/releases/tag/v0.6.3) (2015-12-16)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.2...0.6.3)

- Fixed a bug where manually building for vanilla node would fail without explicitly
setting the target

## [0.6.2](https://github.com/nodegit/nodegit/releases/tag/v0.6.2) (2015-12-16)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.1...0.6.2)

- Fixed a bug where manually building on windows would fail (if unable to download a prebuilt binary)

## [0.6.1](https://github.com/nodegit/nodegit/releases/tag/v0.6.1) (2015-12-14)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.0...0.6.1)

- Fixed Treebuilder.create to have an optional source
- Added Repository.getSubmoduleNames
- Added Submodule.Foreach

## [0.6.0](https://github.com/nodegit/nodegit/releases/tag/v0.6.0) (2015-12-08)

- Added file mode staging
- Added a fast rev walk to do the rev walk in C++ and bubble the result up to JS
- Updated to latest libgit2
- Updated to latest openssl
- Updated to latest nodegit-promise
- Removed c++11 dependency
- Fixed weirdness in lifecycle scripts
- Added downloading prebuilt binaries for electron

## [0.4.1](https://github.com/nodegit/nodegit/tree/0.4.1) (2015-06-02)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.4.0...0.4.1)
Expand Down Expand Up @@ -1102,4 +1134,4 @@



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
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.6.0**
**Stable: 0.6.3**

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

Expand Down
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function build() {

var builder = "node-gyp";
var debug = (process.env.BUILD_DEBUG ? " --debug" : "");
var target;
var target = "";
var distUrl;

process.argv.forEach(function(arg) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.6.2",
"version": "0.6.3",
"homepage": "http://nodegit.org",
"keywords": [
"libgit2",
Expand Down