Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Commit

Permalink
bump version to 3.0.1
Browse files Browse the repository at this point in the history
- bump version
- also set time to check for supported version to 1s
  • Loading branch information
pavanka committed Oct 30, 2015
1 parent eb09eb1 commit 1e5f0a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func checkIfSupported(e *parsecli.Env, version string, mode string, args ...stri
select {
case res := <-timeout:
return res.warning, stackerr.Wrap(res.err)
case <-time.After(time.Duration(500) * time.Millisecond):
case <-time.After(time.Second):
return "", nil
}
return "", nil
Expand Down
2 changes: 1 addition & 1 deletion parsecli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
)

const (
Version = "3.0.0"
Version = "3.0.1"
CloudDir = "cloud"
HostingDir = "public"
DefaultBaseURL = "https://api.parse.com/1/"
Expand Down

0 comments on commit 1e5f0a9

Please sign in to comment.