Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Castell committed Dec 10, 2015
1 parent 223e607 commit e6a3f55
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
30 changes: 15 additions & 15 deletions .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,24 @@
"xc",
"archive-zip",
"archive-tar-gz",
"deb",
"publish-github"
"deb",
"publish-github"
],
"BuildConstraints": "linux,amd64 windows,amd64 darwin,amd64",
"ResourcesInclude": "INSTALL*,README*,LICENSE*,config/*,static/*,templates/*",
"PackageVersion": "0.5.5",
"PackageVersion": "0.6.0",
"TaskSettings": {
"deb": {
"metadata": {
"description": "Distributed, fault tolerant job scheduling system",
"maintainer": "Victor Castell (https://github.com/victorcoder) \u003c[email protected]\u003e"
},
"other-mapped-files": {
"/": "debian/",
"/usr/share/dkron/static": "static/",
"/usr/share/dkron/templates": "templates/"
}
},
"publish-github": {
"apikey": "",
"body": "See: https://github.com/victorcoder/dkron/blob/master/CHANGELOG.md",
Expand All @@ -21,18 +32,7 @@
"owner": "victorcoder",
"prerelease": true,
"repository": "dkron"
},
"deb": {
"metadata": {
"description": "Distributed, fault tolerant job scheduling system",
"maintainer": "Victor Castell (https://github.com/victorcoder) <[email protected]>"
},
"other-mapped-files": {
"/": "debian/",
"/usr/share/dkron/static": "static/",
"/usr/share/dkron/templates": "templates/"
}
}
}
},
"ConfigVersion": "0.9",
"Env": [
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.6.0 (2015-12-11)

- Some other improvements and bug fixing
- Vendoring now using Go vendor experiment + glide
- Fix: Remove executions on job delete
- Show full execution output in UI modal
- New executions results internals using RPC
- Standarized logging
- Show job tooltips with info
- Accept just "pretty" for formatting api requests
- Change how execution groups work to not use the directory concept.

## 0.5.5 (2015-11-19)

- More backend compatibility
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
VERSION = "0.5.5"
VERSION = "0.6.0"
)

func main() {
Expand Down

0 comments on commit e6a3f55

Please sign in to comment.