Skip to content

Commit

Permalink
Release commit for 13.0.0-rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Lord <[email protected]>
  • Loading branch information
mattlord committed Feb 1, 2022
1 parent 727d8fe commit 3fa0fba
Show file tree
Hide file tree
Showing 12 changed files with 468 additions and 32 deletions.
436 changes: 436 additions & 0 deletions doc/releasenotes/13_0_0_release_notes.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions examples/operator/101_initial_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtbackup: vitess/lite:latest
vtctld: vitess/lite:13.0.0-rc1
vtgate: vitess/lite:13.0.0-rc1
vttablet: vitess/lite:13.0.0-rc1
vtbackup: vitess/lite:13.0.0-rc1
mysqld:
mysql56Compatible: vitess/lite:latest
mysql56Compatible: vitess/lite:13.0.0-rc1
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
10 changes: 5 additions & 5 deletions examples/operator/201_customer_tablets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtbackup: vitess/lite:latest
vtctld: vitess/lite:13.0.0-rc1
vtgate: vitess/lite:13.0.0-rc1
vttablet: vitess/lite:13.0.0-rc1
vtbackup: vitess/lite:13.0.0-rc1
mysqld:
mysql56Compatible: vitess/lite:latest
mysql56Compatible: vitess/lite:13.0.0-rc1
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
10 changes: 5 additions & 5 deletions examples/operator/302_new_shards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtbackup: vitess/lite:latest
vtctld: vitess/lite:13.0.0-rc1
vtgate: vitess/lite:13.0.0-rc1
vttablet: vitess/lite:13.0.0-rc1
vtbackup: vitess/lite:13.0.0-rc1
mysqld:
mysql56Compatible: vitess/lite:latest
mysql56Compatible: vitess/lite:13.0.0-rc1
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
10 changes: 5 additions & 5 deletions examples/operator/306_down_shard_0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtbackup: vitess/lite:latest
vtctld: vitess/lite:13.0.0-rc1
vtgate: vitess/lite:13.0.0-rc1
vttablet: vitess/lite:13.0.0-rc1
vtbackup: vitess/lite:13.0.0-rc1
mysqld:
mysql56Compatible: vitess/lite:latest
mysql56Compatible: vitess/lite:13.0.0-rc1
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
12 changes: 6 additions & 6 deletions examples/operator/vtorc_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:latest
vtorc: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtbackup: vitess/lite:latest
vtctld: vitess/lite:13.0.0-rc1
vtorc: vitess/lite:13.0.0-rc1
vtgate: vitess/lite:13.0.0-rc1
vttablet: vitess/lite:13.0.0-rc1
vtbackup: vitess/lite:13.0.0-rc1
mysqld:
mysql56Compatible: vitess/lite:latest
mysql56Compatible: vitess/lite:13.0.0-rc1
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
2 changes: 1 addition & 1 deletion go/vt/servenv/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package servenv

import "flag"

const versionName = "13.0.0-SNAPSHOT"
const versionName = "13.0.0-rc1"

// MySQLServerVersion is what Vitess will present as it's version during the connection handshake,
// and as the value to the @@version system variable. If nothing is provided, Vitess will report itself as
Expand Down
2 changes: 1 addition & 1 deletion java/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>13.0.0-SNAPSHOT</version>
<version>13.0.0-rc1</version>
</parent>
<artifactId>vitess-client</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>13.0.0-SNAPSHOT</version>
<version>13.0.0-rc1</version>
</parent>
<artifactId>vitess-example</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/grpc-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>13.0.0-SNAPSHOT</version>
<version>13.0.0-rc1</version>
</parent>
<artifactId>vitess-grpc-client</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>13.0.0-SNAPSHOT</version>
<version>13.0.0-rc1</version>
</parent>
<artifactId>vitess-jdbc</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>13.0.0-SNAPSHOT</version>
<version>13.0.0-rc1</version>
<packaging>pom</packaging>

<name>Vitess Java Client libraries [Parent]</name>
Expand Down

0 comments on commit 3fa0fba

Please sign in to comment.