diff --git a/gulpfile.js b/gulpfile.js index 8696620a1..d2f0a2075 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -150,7 +150,7 @@ gulp.task('gitVersion', function (cb) { require('child_process').exec('git rev-parse --abbrev-ref HEAD', function(err, stdout) { meta.gitVersionBranch = stdout.replace(/\n$/, ''); - require('child_process').exec('git describe --tags --always --dirty', function(err, stdout) { + require('child_process').exec('git describe --tags --always', function(err, stdout) { meta.gitVersion = stdout.replace(/\n$/, ''); cb(err) diff --git a/package.json b/package.json index 9c32cfdd4..4fc2e6972 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ripple-client", - "version": "1.4.4-1", + "version": "1.5.0", "description": "Trade client for the Ripple payment network", "author": { "name": "Ripple Labs, Inc.",