Skip to content

Commit df4d2ff

Browse files
committed
Update for 1.17.0
1 parent 4bc6d6d commit df4d2ff

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

docs/config.toml

Lines changed: 12 additions & 11 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-docs-master'
17+
baseURL = '//nightlies.apache.org/flink/flink-docs-release-1.17'
1818
languageCode = "en-us"
1919
title = "Apache Flink"
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.17-SNAPSHOT"
37+
Version = "1.17.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.17-SNAPSHOT"
41+
VersionTitle = "1.17"
4242

4343
# The branch for this version of Apache Flink
44-
Branch = "master"
44+
Branch = "release-1.17"
4545

4646
# The github repository for Apache Flink
4747
Repo = "//github.com/apache/flink"
@@ -60,22 +60,23 @@ pygmentsUseClasses = true
6060

6161
ZhDownloadPage = "//flink.apache.org/zh/downloads.html"
6262

63-
JavaDocs = "//nightlies.apache.org/flink/flink-docs-master/api/java/"
63+
JavaDocs = "//nightlies.apache.org/flink/flink-docs-release-1.17/api/java/"
6464

65-
ScalaDocs = "//nightlies.apache.org/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"
65+
ScalaDocs = "//nightlies.apache.org/flink/flink-docs-release-1.17/api/scala/index.html#org.apache.flink.api.scala.package"
6666

67-
PyDocs = "//nightlies.apache.org/flink/flink-docs-master/api/python/"
67+
PyDocs = "//nightlies.apache.org/flink/flink-docs-release-1.17/api/python/"
6868

6969
# External links at the bottom
7070
# of the menu
7171
MenuLinks = [
7272
["Project Homepage", "//flink.apache.org"],
73-
["JavaDocs", "//nightlies.apache.org/flink/flink-docs-master/api/java/"],
74-
["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"],
75-
["PyDocs", "//nightlies.apache.org/flink/flink-docs-master/api/python/"]
73+
["JavaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.17/api/java/"],
74+
["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.17/api/scala/index.html#org.apache.flink.api.scala.package/"],
75+
["PyDocs", "//nightlies.apache.org/flink/flink-docs-release-1.17/api/python/"]
7676
]
7777

7878
PreviousDocs = [
79+
["1.17", "http://nightlies.apache.org/flink/flink-docs-release-1.17"],
7980
["1.16", "http://nightlies.apache.org/flink/flink-docs-release-1.16"],
8081
["1.15", "http://nightlies.apache.org/flink/flink-docs-release-1.15"],
8182
["1.14", "http://nightlies.apache.org/flink/flink-docs-release-1.14"],

flink-end-to-end-tests/test-scripts/common_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function build_image() {
4848
local server_pid=$!
4949

5050
echo "Preparing Dockeriles"
51-
retry_times_with_exponential_backoff 5 git clone https://github.com/apache/flink-docker.git --branch dev-master --single-branch
51+
retry_times_with_exponential_backoff 5 git clone https://github.com/apache/flink-docker.git --branch dev-1.17 --single-branch
5252

5353
local java_version=8
5454
if [[ ${PROFILE} == *"jdk11"* ]]; then

0 commit comments

Comments
 (0)