Skip to content

Commit

Permalink
Update for 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guoweiM committed Apr 18, 2021
1 parent d98d731 commit 7b81e52
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
23 changes: 12 additions & 11 deletions docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

baseURL = '//ci.apache.org/projects/flink/flink-docs-master'
baseURL = '//ci.apache.org/projects/flink/flink-docs-release-1.13'
languageCode = "en-us"
title = "Apache Flink"
enableGitInfo = false
Expand All @@ -24,7 +24,7 @@ pygmentsUseClasses = true
[params]
# Flag whether this is a stable version or not.
# Used for the quickstart page.
IsStable = false
IsStable = true

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

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

# The branch for this version of Apache Flink
Branch = "master"
Branch = "release-1.13"

# The github repository for Apache Flink
Repo = "//github.com/apache/flink"
Expand All @@ -56,22 +56,23 @@ pygmentsUseClasses = true

ProjectHomepage = "//flink.apache.org"

JavaDocs = "//ci.apache.org/projects/flink/flink-docs-master/api/java/"
JavaDocs = "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/java/"

ScalaDocs = "//ci.apache.org/projects/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"
ScalaDocs = "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/scala/index.html#org.apache.flink.api.scala.package"

PyDocs = "//ci.apache.org/projects/flink/flink-docs-master/api/python/"
PyDocs = "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/python/"

# External links at the bottom
# of the menu
MenuLinks = [
["Project Homepage", "//flink.apache.org"],
["JavaDocs", "//ci.apache.org/projects/flink/flink-docs-master/api/java/"],
["ScalaDocs", "//ci.apache.org/projects/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"],
["PyDocs", "//ci.apache.org/projects/flink/flink-docs-master/api/python/"]
["JavaDocs", "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/java/"],
["ScalaDocs", "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/scala/index.html#org.apache.flink.api.scala.package/"]
["PyDocs", "//ci.apache.org/projects/flink/flink-docs-release-1.13/api/python/"]
]

PreviousDocs = [
["1.13", "http://ci.apache.org/projects/flink/flink-docs-release-1.13"],
["1.12", "http://ci.apache.org/projects/flink/flink-docs-release-1.12"],
["1.11", "http://ci.apache.org/projects/flink/flink-docs-release-1.11"],
["1.10", "http://ci.apache.org/projects/flink/flink-docs-release-1.10"],
Expand Down
2 changes: 1 addition & 1 deletion flink-end-to-end-tests/test-scripts/common_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function build_image() {
local server_pid=$!

echo "Preparing Dockeriles"
git clone https://github.com/apache/flink-docker.git --branch dev-master --single-branch
git clone https://github.com/apache/flink-docker.git --branch dev-1.13 --single-branch
cd flink-docker
./add-custom.sh -u ${file_server_address}:9999/flink.tgz -n ${image_name}

Expand Down
2 changes: 1 addition & 1 deletion flink-python/pyflink/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
The pyflink version will be consistent with the flink version and follow the PEP440.
.. seealso:: https://www.python.org/dev/peps/pep-0440
"""
__version__ = "1.13.dev0"
__version__ = "1.13.0"

0 comments on commit 7b81e52

Please sign in to comment.