Skip to content

Commit 146bdbc

Browse files
authored
Bump version to v0.15.0 (#149)
1 parent 567d346 commit 146bdbc

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

cmd/server/main.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import (
3030
"github.com/temporalio/ui-server/plugins/fs_config_provider"
3131
"github.com/temporalio/ui-server/server"
3232
"github.com/temporalio/ui-server/server/server_options"
33+
"github.com/temporalio/ui-server/server/version"
3334
"github.com/urfave/cli/v2"
3435
)
3536

@@ -42,9 +43,9 @@ func main() {
4243
// buildCLI is the main entry point for the web server
4344
func buildCLI() *cli.App {
4445
app := cli.NewApp()
45-
app.Name = "Web"
46-
app.Usage = "Temporal Web"
47-
app.Version = "0.1.0"
46+
app.Name = "Temporal UI"
47+
app.Usage = "https://github.com/temporalio/ui"
48+
app.Version = version.UIVersion
4849
app.ArgsUsage = " "
4950
app.Flags = []cli.Flag{
5051
&cli.StringFlag{

server/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ const (
2828
clientNameHeaderName = "client-name"
2929
clientNameHeaderValue = "temporal-ui"
3030
clientVersionHeaderName = "client-version"
31-
UIVersion = "0.14.0"
31+
UIVersion = "0.15.0"
3232
)

0 commit comments

Comments
 (0)