Skip to content

Commit

Permalink
Checkin new version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeckers committed Apr 15, 2016
1 parent 854fcd4 commit b64bcc8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
*.swp
*.swo
*~
.goxc.local.json
15 changes: 13 additions & 2 deletions .goxc.json
@@ -1,5 +1,16 @@
{
"BuildConstraints": "windows,amd64 linux,amd64 darwin,amd64",
"PackageVersion": "0.0.1",
"ConfigVersion": "0.9"
"PackageVersion": "0.5.0",
"ConfigVersion": "0.9",
"TaskSettings": {
"bintray": {
"apihost": "https://api.bintray.com/",
"downloadshost": "https://dl.bintray.com/",
"downloadspage": "bintray.md",
"repository": "sparkcli",
"package": "sparkcli",
"subject": "tdeckers"
}
}

}
12 changes: 12 additions & 0 deletions DEVELOPMENT.md
Expand Up @@ -26,6 +26,18 @@ Add API key to .goxc.local.json

goxc bintray

Configuration for bintray plugin is in .goxc.yml. API key is in
.goxc.local.yml (not checked in!). Format:

{
"ConfigVersion": "0.9",
"TaskSettings": {
"bintray": {
"apikey": "5d1f300712a5da07b2f64109921cc0346622e14c"
}
}
}

# TODO

* travis builds
Expand Down
2 changes: 1 addition & 1 deletion sparkcli.go
Expand Up @@ -19,7 +19,7 @@ func main() {
app := cli.NewApp()
app.Name = "sparkcli"
app.Usage = "Command Line Interface for Cisco Spark"
app.Version = "0.0.1"
app.Version = "0.5.0"
app.Flags = []cli.Flag{
cli.BoolTFlag{
Name: "j",
Expand Down

0 comments on commit b64bcc8

Please sign in to comment.