Skip to content

Commit

Permalink
Updates version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coltmcnealy-lh committed Jun 6, 2024
1 parent 13eba01 commit a06af9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lhctl/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var versionCmd = &cobra.Command{
Use: "version",
Short: "Print Client and Server Version Information.",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("lhctl version: 0.9.2")
fmt.Println("lhctl version: 0.9.3")

resp, err := getGlobalClient(cmd).GetServerVersion(requestContext(cmd), &emptypb.Empty{})
if err != nil {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ public void getServerVersion(Empty request, StreamObserver<ServerVersionResponse
ctx.onNext(ServerVersionResponse.newBuilder()
.setMajorVersion(0)
.setMinorVersion(9)
.setPatchVersion(2)
.setPatchVersion(3)
.build());
ctx.onCompleted();
}
Expand Down

0 comments on commit a06af9d

Please sign in to comment.