diff options
| -rw-r--r-- | Rakefile | 2 | ||||
| -rw-r--r-- | todo.go | 4 | ||||
| -rw-r--r-- | todolist/webapp.go | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -10,7 +10,7 @@ Envs = [ {goos: "windows", arch: "amd64"} ] -Version = "0.3.0" +Version = "0.3.1" task :build do `rm -rf dist/#{Version}` @@ -6,12 +6,12 @@ import ( "strings" "github.com/fatih/color" - "github.com/skratchdot/open-golang/open" "github.com/gammons/todolist/todolist" + "github.com/skratchdot/open-golang/open" ) const ( - VERSION = "0.3.0" + VERSION = "0.3.1" ) func main() { diff --git a/todolist/webapp.go b/todolist/webapp.go index 5c93e90..09a83c3 100644 --- a/todolist/webapp.go +++ b/todolist/webapp.go @@ -10,7 +10,7 @@ import ( ) const ( - VERSION = "0.3.0" + VERSION = "0.3.1" S3URL = "https://s3.amazonaws.com/todolist-local/" + VERSION ) |
