Skip to content

Commit

Permalink
Prepare v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexshtin committed Oct 20, 2020
1 parent 7bf6bea commit 2eb9933
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions common/headers/versionChecker.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const (
ClientNameJavaSDK = "temporal-java"
ClientNameCLI = "temporal-cli"

ServerVersion = "1.1.0"
CLIVersion = "1.1.0"
ServerVersion = "1.1.1"
CLIVersion = "1.1.1"

// SupportedServerVersions is used by CLI and inter role communication.
SupportedServerVersions = ">=1.0.0 <2.0.0"
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose-cockroach.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- ALL
command: ["start", "--insecure"]
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -30,15 +30,15 @@ services:
links:
- cockroach:postgres
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose-es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms100m -Xmx100m
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -42,15 +42,15 @@ services:
- kafka
- elasticsearch
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose-mysql-es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -47,15 +47,15 @@ services:
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms100m -Xmx100m
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
ports:
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
environment:
- "MYSQL_ROOT_PASSWORD=root"
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -22,15 +22,15 @@ services:
depends_on:
- mysql
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
POSTGRES_USER: temporal
POSTGRES_PASSWORD: temporal
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -23,15 +23,15 @@ services:
depends_on:
- postgresql
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
ports:
- "9042:9042"
temporal:
image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
image: temporalio/auto-setup:${SERVER_TAG:-1.1.1}
ports:
- "7233:7233"
volumes:
Expand All @@ -17,15 +17,15 @@ services:
depends_on:
- cassandra
temporal-admin-tools:
image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
image: temporalio/admin-tools:${SERVER_TAG:-1.1.1}
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
depends_on:
- temporal
temporal-web:
image: temporalio/web:${WEB_TAG:-1.1.0}
image: temporalio/web:${WEB_TAG:-1.1.1}
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
Expand Down

0 comments on commit 2eb9933

Please sign in to comment.