Skip to content

Commit cdb2bff

Browse files
author
Mark Markaryan
authored
Switching to v0.27.0, in preparation for v0.27.0 release (temporalio#547)
1 parent 0eafe04 commit cdb2bff

8 files changed

+22
-22
lines changed

docker/docker-compose-cockroach.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
- ALL
1414
command: ["start", "--insecure"]
1515
temporal:
16-
image: temporalio/server:${SERVER_TAG:-0.26.0}
16+
image: temporalio/server:${SERVER_TAG:-0.27.0}
1717
ports:
1818
- "7233:7233"
1919
environment:
@@ -29,15 +29,15 @@ services:
2929
links:
3030
- cockroach:postgres
3131
temporal-admin-tools:
32-
image: temporalio/admin-tools:${SERVER_TAG:-0.26.0}
32+
image: temporalio/admin-tools:${SERVER_TAG:-0.27.0}
3333
stdin_open: true
3434
tty: true
3535
environment:
3636
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
3737
depends_on:
3838
- temporal
3939
temporal-web:
40-
image: temporalio/web:${WEB_TAG:-0.26.0}
40+
image: temporalio/web:${WEB_TAG:-0.27.0}
4141
environment:
4242
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
4343
ports:

docker/docker-compose-es.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- discovery.type=single-node
2727
- ES_JAVA_OPTS=-Xms100m -Xmx100m
2828
temporal:
29-
image: temporalio/server:${SERVER_TAG:-0.26.0}
29+
image: temporalio/server:${SERVER_TAG:-0.27.0}
3030
ports:
3131
- "7233:7233"
3232
environment:
@@ -41,15 +41,15 @@ services:
4141
- kafka
4242
- elasticsearch
4343
temporal-admin-tools:
44-
image: temporalio/admin-tools:${SERVER_TAG:-0.26.0}
44+
image: temporalio/admin-tools:${SERVER_TAG:-0.27.0}
4545
stdin_open: true
4646
tty: true
4747
environment:
4848
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
4949
depends_on:
5050
- temporal
5151
temporal-web:
52-
image: temporalio/web:${WEB_TAG:-0.26.0}
52+
image: temporalio/web:${WEB_TAG:-0.27.0}
5353
environment:
5454
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
5555
ports:

docker/docker-compose-mysql.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
environment:
88
- "MYSQL_ROOT_PASSWORD=root"
99
temporal:
10-
image: temporalio/server:${SERVER_TAG:-0.26.0}
10+
image: temporalio/server:${SERVER_TAG:-0.27.0}
1111
ports:
1212
- "7233:7233"
1313
environment:
@@ -20,15 +20,15 @@ services:
2020
depends_on:
2121
- mysql
2222
temporal-admin-tools:
23-
image: temporalio/admin-tools:${SERVER_TAG:-0.26.0}
23+
image: temporalio/admin-tools:${SERVER_TAG:-0.27.0}
2424
stdin_open: true
2525
tty: true
2626
environment:
2727
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
2828
depends_on:
2929
- temporal
3030
temporal-web:
31-
image: temporalio/web:${WEB_TAG:-0.26.0}
31+
image: temporalio/web:${WEB_TAG:-0.27.0}
3232
environment:
3333
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3434
ports:

docker/docker-compose-postgres.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
ports:
99
- "5432:5432"
1010
temporal:
11-
image: temporalio/server:${SERVER_TAG:-0.26.0}
11+
image: temporalio/server:${SERVER_TAG:-0.27.0}
1212
ports:
1313
- "7233:7233"
1414
environment:
@@ -22,15 +22,15 @@ services:
2222
depends_on:
2323
- postgres
2424
temporal-admin-tools:
25-
image: temporalio/admin-tools:${SERVER_TAG:-0.26.0}
25+
image: temporalio/admin-tools:${SERVER_TAG:-0.27.0}
2626
stdin_open: true
2727
tty: true
2828
environment:
2929
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
3030
depends_on:
3131
- temporal
3232
temporal-web:
33-
image: temporalio/web:${WEB_TAG:-0.26.0}
33+
image: temporalio/web:${WEB_TAG:-0.27.0}
3434
environment:
3535
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3636
ports:

docker/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
ports:
77
- "9042:9042"
88
temporal:
9-
image: temporalio/server:${SERVER_TAG:-0.26.0}
9+
image: temporalio/server:${SERVER_TAG:-0.27.0}
1010
ports:
1111
- "7233:7233"
1212
environment:
@@ -16,15 +16,15 @@ services:
1616
depends_on:
1717
- cassandra
1818
temporal-admin-tools:
19-
image: temporalio/admin-tools:${SERVER_TAG:-0.26.0}
19+
image: temporalio/admin-tools:${SERVER_TAG:-0.27.0}
2020
stdin_open: true
2121
tty: true
2222
environment:
2323
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
2424
depends_on:
2525
- temporal
2626
temporal-web:
27-
image: temporalio/web:${WEB_TAG:-0.26.0}
27+
image: temporalio/web:${WEB_TAG:-0.27.0}
2828
environment:
2929
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3030
ports:

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ require (
5959
github.com/urfave/cli v1.22.4
6060
github.com/valyala/fastjson v1.5.1
6161
github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2
62-
go.temporal.io/api v0.26.1-0.20200714004414-a2b31a0f7797
63-
go.temporal.io/sdk v0.26.1-0.20200714051239-9b7db6c0fe19
62+
go.temporal.io/api v0.27.0
63+
go.temporal.io/sdk v0.27.0
6464
go.uber.org/atomic v1.6.0
6565
go.uber.org/multierr v1.5.0
6666
go.uber.org/zap v1.15.0

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
353353
go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
354354
go.opencensus.io v0.22.3 h1:8sGtKOrtQqkN1bp2AtX+misvLIlOmsEsNd+9NIcPEm8=
355355
go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
356-
go.temporal.io/api v0.26.1-0.20200714004414-a2b31a0f7797 h1:0PnYP7/kN7CpEeo0RawyL1UN+9png+kFM0heBQGEC4Q=
357-
go.temporal.io/api v0.26.1-0.20200714004414-a2b31a0f7797/go.mod h1:8CY+wo1SfHhGVZslLY5FAAhIA4TWtJJBmRPXObKPjvM=
358-
go.temporal.io/sdk v0.26.1-0.20200714051239-9b7db6c0fe19 h1:Mkw1bq7DpUzGixiJDn7IMlyEwKrA7XefM5e1hLdJIyA=
359-
go.temporal.io/sdk v0.26.1-0.20200714051239-9b7db6c0fe19/go.mod h1:acbrog+vaoQynjBs262eFp0ezLSPnvT36p4izf4xfcQ=
356+
go.temporal.io/api v0.27.0 h1:rKleFvZES4k4j8uCfohLlKL2BBdQgb/syfvrbhkkoz4=
357+
go.temporal.io/api v0.27.0/go.mod h1:8CY+wo1SfHhGVZslLY5FAAhIA4TWtJJBmRPXObKPjvM=
358+
go.temporal.io/sdk v0.27.0 h1:14mSr76PiINPPXaAXsRDoEUOsRFceyQxXFBirNDOXtM=
359+
go.temporal.io/sdk v0.27.0/go.mod h1:drjAzEMmKex7+yE476Wdg/wjhKpOlMPRKfgo+ON/jPQ=
360360
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
361361
go.uber.org/atomic v1.5.1/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
362362
go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk=

tools/cli/app.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
const (
3232
// Version is the controlled version string. It should be updated every time
3333
// before we release a new version.
34-
Version = "0.26.0"
34+
Version = "0.27.0"
3535
)
3636

3737
// SetFactory is used to set the ClientFactory global

0 commit comments

Comments
 (0)