Skip to content

Commit d26d69b

Browse files
committed
[release] Docs, CI and config updates after release cut
1 parent 099cdbd commit d26d69b

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.asf.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ github:
2323
release-1.10: {}
2424
release-1.11: {}
2525
release-1.12: {}
26+
release-1.13: {}
2627

2728
notifications:
2829

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
branch:
3030
- main
31-
- release-1.11
31+
- release-1.13
3232
- release-1.12
3333
steps:
3434
- uses: actions/checkout@v3
@@ -41,8 +41,8 @@ jobs:
4141
echo "flink_branch=${currentBranch}"
4242
echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV}
4343
if [ "${currentBranch}" = "main" ]; then
44-
echo "flink_alias=release-1.13" >> ${GITHUB_ENV}
45-
elif [ "${currentBranch}" = "release-1.12" ]; then
44+
echo "flink_alias=release-1.14" >> ${GITHUB_ENV}
45+
elif [ "${currentBranch}" = "release-1.13" ]; then
4646
echo "flink_alias=stable" >> ${GITHUB_ENV}
4747
else
4848
echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV}

docs/config.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
baseURL = '//nightlies.apache.org/flink/flink-kubernetes-operator-docs-main'
17+
baseURL = '//nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.13'
1818
languageCode = 'en-us'
1919
title = 'Apache Flink Kubernetes Operator'
2020
enableGitInfo = false
@@ -24,7 +24,7 @@ pygmentsUseClasses = true
2424
[params]
2525
# Flag whether this is a stable version or not.
2626
# Used for the quickstart page.
27-
IsStable = false
27+
IsStable = true
2828

2929
# Flag to indicate whether an outdated warning should be shown.
3030
ShowOutDatedWarning = false
@@ -34,14 +34,14 @@ pygmentsUseClasses = true
3434
# we change the version for the complete docs when forking of a release branch
3535
# etc.
3636
# The full version string as referenced in Maven (e.g. 1.2.1)
37-
Version = "1.13-SNAPSHOT"
37+
Version = "1.13.0"
3838

3939
# For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
4040
# release this should be the same as the regular version
41-
VersionTitle = "1.13-SNAPSHOT"
41+
VersionTitle = "1.13"
4242

4343
# The branch for this version of the Apache Flink Kubernetes Operator
44-
Branch = "main"
44+
Branch = "release-1.13"
4545

4646
# The github repository for the Apache Flink Kubernetes Operator
4747
Repo = "//github.com/apache/flink-kubernetes-operator"
@@ -53,13 +53,13 @@ pygmentsUseClasses = true
5353

5454
ProjectHomepage = "//flink.apache.org"
5555

56-
JavaDocs = "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/api/java/"
56+
JavaDocs = "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.13/api/java/"
5757

5858
# External links at the bottom
5959
# of the menu
6060
MenuLinks = [
6161
["Project Homepage", "//flink.apache.org"],
62-
["JavaDocs", "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/api/java/"]
62+
["JavaDocs", "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.13/api/java/"]
6363
]
6464

6565
PreviousDocs = [

0 commit comments

Comments
 (0)