Skip to content

Commit 8d8720b

Browse files
authored
Release 1.0.0 (temporalio#780)
1 parent e250b8c commit 8d8720b

9 files changed

+25
-25
lines changed

common/headers/versionChecker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const (
4242
CLIVersion = "1.0.0"
4343

4444
// SupportedServerVersions is used by CLI and inter role communication.
45-
SupportedServerVersions = ">=0.31.0 <2.0.0"
45+
SupportedServerVersions = ">=1.0.0 <2.0.0"
4646
)
4747

4848
var (

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/auto-setup:${SERVER_TAG:-1.0.0-rc1}
16+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
33+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
41+
image: temporalio/web:${WEB_TAG:-1.0.0}
4242
environment:
4343
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
4444
- "TEMPORAL_PERMIT_WRITE_API=true"

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/auto-setup:${SERVER_TAG:-1.0.0-rc1}
29+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
45+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
53+
image: temporalio/web:${WEB_TAG:-1.0.0}
5454
environment:
5555
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
5656
- "TEMPORAL_PERMIT_WRITE_API=true"

docker/docker-compose-mysql-es.yml

+3-3
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.0.0-rc1}
24+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
50+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
58+
image: temporalio/web:${WEB_TAG:-1.0.0}
5959
environment:
6060
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
6161
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/auto-setup:${SERVER_TAG:-1.0.0-rc1}
10+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
1111
ports:
1212
- "7233:7233"
1313
volumes:
@@ -21,15 +21,15 @@ services:
2121
depends_on:
2222
- mysql
2323
temporal-admin-tools:
24-
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0-rc1}
24+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
2525
stdin_open: true
2626
tty: true
2727
environment:
2828
- "TEMPORAL_CLI_ADDRESS=temporal:7233"
2929
depends_on:
3030
- temporal
3131
temporal-web:
32-
image: temporalio/web:${WEB_TAG:-1.0.0-rc1}
32+
image: temporalio/web:${WEB_TAG:-1.0.0}
3333
environment:
3434
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3535
- "TEMPORAL_PERMIT_WRITE_API=true"

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/auto-setup:${SERVER_TAG:-1.0.0-rc1}
11+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
1212
ports:
1313
- "7233:7233"
1414
volumes:
@@ -23,15 +23,15 @@ services:
2323
depends_on:
2424
- postgres
2525
temporal-admin-tools:
26-
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0-rc1}
26+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
34+
image: temporalio/web:${WEB_TAG:-1.0.0}
3535
environment:
3636
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3737
- "TEMPORAL_PERMIT_WRITE_API=true"

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/auto-setup:${SERVER_TAG:-1.0.0-rc1}
9+
image: temporalio/auto-setup:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
20+
image: temporalio/admin-tools:${SERVER_TAG:-1.0.0}
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.0.0-rc1}
28+
image: temporalio/web:${WEB_TAG:-1.0.0}
2929
environment:
3030
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
3131
- "TEMPORAL_PERMIT_WRITE_API=true"

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 v1.0.0-rc1
63-
go.temporal.io/sdk v1.0.0-rc1
62+
go.temporal.io/api v1.0.0
63+
go.temporal.io/sdk v1.0.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
@@ -355,10 +355,10 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
355355
go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
356356
go.opencensus.io v0.22.3 h1:8sGtKOrtQqkN1bp2AtX+misvLIlOmsEsNd+9NIcPEm8=
357357
go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
358-
go.temporal.io/api v1.0.0-rc1 h1:a5n4VAFp5Xi997frqiXIiic5uf8RBppBWt1ENeRSCnM=
359-
go.temporal.io/api v1.0.0-rc1/go.mod h1:AgbKINgV3KR9SlTH8nQRsNadVbxVI+/LnZ1uFModMIA=
360-
go.temporal.io/sdk v1.0.0-rc1 h1:sawdwVqJm/ZGCPJF63kvvwetzRXnEjjXR8HEUayXIOE=
361-
go.temporal.io/sdk v1.0.0-rc1/go.mod h1:93SKxpUfV4TMKz3hxRfGgGk5f9RpItJoZQVHLIn7hJ0=
358+
go.temporal.io/api v1.0.0 h1:mWtvS+5ENYvG4ZPZ/4/bxCj4j3gIF4D05C2GVrhLpjc=
359+
go.temporal.io/api v1.0.0/go.mod h1:AgbKINgV3KR9SlTH8nQRsNadVbxVI+/LnZ1uFModMIA=
360+
go.temporal.io/sdk v1.0.0 h1:Cfrr/RkcoGu+B/vpOII1D7xv4rhRHa5eYQStnuASS7k=
361+
go.temporal.io/sdk v1.0.0/go.mod h1:mtuFg8AafvaXeAE3gwBjZZN05uwTGjzVf1qkXmq4hpM=
362362
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
363363
go.uber.org/atomic v1.5.1/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
364364
go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk=

0 commit comments

Comments
 (0)