Skip to content

Commit 2eb9933

Browse files
committed
Prepare v1.1.1 release
1 parent 7bf6bea commit 2eb9933

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

common/headers/versionChecker.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const (
3838
ClientNameJavaSDK = "temporal-java"
3939
ClientNameCLI = "temporal-cli"
4040

41-
ServerVersion = "1.1.0"
42-
CLIVersion = "1.1.0"
41+
ServerVersion = "1.1.1"
42+
CLIVersion = "1.1.1"
4343

4444
// SupportedServerVersions is used by CLI and inter role communication.
4545
SupportedServerVersions = ">=1.0.0 <2.0.0"

docker/docker-compose-cockroach.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
- ALL
1414
command: ["start", "--insecure"]
1515
temporal:
16-
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
16+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
1717
ports:
1818
- "7233:7233"
1919
volumes:
@@ -30,15 +30,15 @@ services:
3030
links:
3131
- cockroach:postgres
3232
temporal-admin-tools:
33-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
33+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
3434
stdin_open: true
3535
tty: true
3636
environment:
3737
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
3838
depends_on:
3939
- temporal
4040
temporal-web:
41-
image: temporalio/web:${WEB_TAG:-1.1.0}
41+
image: temporalio/web:${WEB_TAG:-1.1.1}
4242
environment:
4343
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
4444
- "TEMPORAL_PERMIT_WRITE_API=true"

docker/docker-compose-es.yml

Lines changed: 3 additions & 3 deletions
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/auto-setup:${SERVER_TAG:-1.1.0}
29+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
3030
ports:
3131
- "7233:7233"
3232
volumes:
@@ -42,15 +42,15 @@ services:
4242
- kafka
4343
- elasticsearch
4444
temporal-admin-tools:
45-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
45+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
4646
stdin_open: true
4747
tty: true
4848
environment:
4949
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
5050
depends_on:
5151
- temporal
5252
temporal-web:
53-
image: temporalio/web:${WEB_TAG:-1.1.0}
53+
image: temporalio/web:${WEB_TAG:-1.1.1}
5454
environment:
5555
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
5656
- "TEMPORAL_PERMIT_WRITE_API=true"

docker/docker-compose-mysql-es.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
2222
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
2323
temporal:
24-
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
24+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
2525
ports:
2626
- "7233:7233"
2727
volumes:
@@ -47,15 +47,15 @@ services:
4747
- discovery.type=single-node
4848
- ES_JAVA_OPTS=-Xms100m -Xmx100m
4949
temporal-admin-tools:
50-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
50+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
5151
stdin_open: true
5252
tty: true
5353
environment:
5454
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
5555
depends_on:
5656
- temporal
5757
temporal-web:
58-
image: temporalio/web:${WEB_TAG:-1.1.0}
58+
image: temporalio/web:${WEB_TAG:-1.1.1}
5959
environment:
6060
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
6161
ports:

docker/docker-compose-mysql.yml

Lines changed: 3 additions & 3 deletions
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/auto-setup:${SERVER_TAG:-1.1.0}
10+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
1111
ports:
1212
- "7233:7233"
1313
volumes:
@@ -22,15 +22,15 @@ services:
2222
depends_on:
2323
- mysql
2424
temporal-admin-tools:
25-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
25+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
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:-1.1.0}
33+
image: temporalio/web:${WEB_TAG:-1.1.1}
3434
environment:
3535
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3636
- "TEMPORAL_PERMIT_WRITE_API=true"

docker/docker-compose-postgres.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
POSTGRES_USER: temporal
99
POSTGRES_PASSWORD: temporal
1010
temporal:
11-
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
11+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
1212
ports:
1313
- "7233:7233"
1414
volumes:
@@ -23,15 +23,15 @@ services:
2323
depends_on:
2424
- postgresql
2525
temporal-admin-tools:
26-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
26+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
2727
stdin_open: true
2828
tty: true
2929
environment:
3030
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
3131
depends_on:
3232
- temporal
3333
temporal-web:
34-
image: temporalio/web:${WEB_TAG:-1.1.0}
34+
image: temporalio/web:${WEB_TAG:-1.1.1}
3535
environment:
3636
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3737
- "TEMPORAL_PERMIT_WRITE_API=true"

docker/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
ports:
77
- "9042:9042"
88
temporal:
9-
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
9+
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
1010
ports:
1111
- "7233:7233"
1212
volumes:
@@ -17,15 +17,15 @@ services:
1717
depends_on:
1818
- cassandra
1919
temporal-admin-tools:
20-
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
20+
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
2121
stdin_open: true
2222
tty: true
2323
environment:
2424
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
2525
depends_on:
2626
- temporal
2727
temporal-web:
28-
image: temporalio/web:${WEB_TAG:-1.1.0}
28+
image: temporalio/web:${WEB_TAG:-1.1.1}
2929
environment:
3030
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3131
- "TEMPORAL_PERMIT_WRITE_API=true"

0 commit comments

Comments
 (0)