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

Commit 1e5f0a9

Browse files
committed
bump version to 3.0.1
- bump version - also set time to check for supported version to 1s
1 parent eb09eb1 commit 1e5f0a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func checkIfSupported(e *parsecli.Env, version string, mode string, args ...stri
141141
select {
142142
case res := <-timeout:
143143
return res.warning, stackerr.Wrap(res.err)
144-
case <-time.After(time.Duration(500) * time.Millisecond):
144+
case <-time.After(time.Second):
145145
return "", nil
146146
}
147147
return "", nil

parsecli/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
)
2323

2424
const (
25-
Version = "3.0.0"
25+
Version = "3.0.1"
2626
CloudDir = "cloud"
2727
HostingDir = "public"
2828
DefaultBaseURL = "https://api.parse.com/1/"

0 commit comments

Comments
 (0)