Skip to content

Commit b64bcc8

Browse files
committed
Checkin new version number
1 parent 854fcd4 commit b64bcc8

4 files changed

Lines changed: 27 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.swp
22
*.swo
33
*~
4+
.goxc.local.json

.goxc.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"BuildConstraints": "windows,amd64 linux,amd64 darwin,amd64",
3-
"PackageVersion": "0.0.1",
4-
"ConfigVersion": "0.9"
3+
"PackageVersion": "0.5.0",
4+
"ConfigVersion": "0.9",
5+
"TaskSettings": {
6+
"bintray": {
7+
"apihost": "https://api.bintray.com/",
8+
"downloadshost": "https://dl.bintray.com/",
9+
"downloadspage": "bintray.md",
10+
"repository": "sparkcli",
11+
"package": "sparkcli",
12+
"subject": "tdeckers"
13+
}
14+
}
15+
516
}

DEVELOPMENT.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ Add API key to .goxc.local.json
2626

2727
goxc bintray
2828

29+
Configuration for bintray plugin is in .goxc.yml. API key is in
30+
.goxc.local.yml (not checked in!). Format:
31+
32+
{
33+
"ConfigVersion": "0.9",
34+
"TaskSettings": {
35+
"bintray": {
36+
"apikey": "5d1f300712a5da07b2f64109921cc0346622e14c"
37+
}
38+
}
39+
}
40+
2941
# TODO
3042

3143
* travis builds

sparkcli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func main() {
1919
app := cli.NewApp()
2020
app.Name = "sparkcli"
2121
app.Usage = "Command Line Interface for Cisco Spark"
22-
app.Version = "0.0.1"
22+
app.Version = "0.5.0"
2323
app.Flags = []cli.Flag{
2424
cli.BoolTFlag{
2525
Name: "j",

0 commit comments

Comments
 (0)