Skip to content

Commit 1c4fa44

Browse files
committed
fix for failing standard test #4
1 parent 64b8521 commit 1c4fa44

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# gh-release changelog
22

3-
## unreleased
3+
## 1.0.8 - 2015-02-22
4+
* fix for standard [#4](https://github.com/ngoldman/gh-release/issues/4)
45
* fix ordering in readme
56

67
## 1.0.7 - 2015-02-11

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ inquirer.prompt(questions, function (auth) {
8080
var whitelist = Object.keys(defaults)
8181
var options = extend(getDefaults(), argv)
8282

83-
Object.keys(options).forEach(function(key) {
83+
Object.keys(options).forEach(function (key) {
8484
if (whitelist.indexOf(key) === -1) delete options[key]
8585
})
8686

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function ghRelease (options, auth, callback) {
4242
process.exit(0)
4343
}
4444

45-
client.releases.createRelease(options, function(err, res) {
45+
client.releases.createRelease(options, function (err, res) {
4646
if (err) throw err
4747
callback(null, res)
4848
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gh-release",
33
"description": "Create a release for a node package on github.",
4-
"version": "1.0.7",
4+
"version": "1.0.8",
55
"author": "Nate Goldman <[email protected]>",
66
"bin": {
77
"gh-release": "./bin/cli.js"

0 commit comments

Comments
 (0)