Skip to content

Commit 05531e5

Browse files
committed
bump min required cli version
1 parent 08a7818 commit 05531e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/pkg/request/version_check_handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var (
1414

1515
func init() {
1616
MinimumVersions = map[string]string{
17-
"happy-cli": "0.53.6",
17+
"happy-cli": "0.90.0",
1818
"happy-provider": "0.52.0",
1919
}
2020

@@ -50,7 +50,7 @@ func validateUserAgentVersion(userAgent string) error {
5050
}
5151

5252
if len(clientVersionParts) < 2 {
53-
return errors.Errorf("expected version so be specified for %s in the User-Agent header (format: %s/<version>)", client, client)
53+
return errors.Errorf("expected version to be specified for %s in the User-Agent header (format: %s/<version>)", client, client)
5454
}
5555

5656
versionStr := clientVersionParts[1]

0 commit comments

Comments
 (0)