This is an automated email from the ASF dual-hosted git repository.
leonard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-cdc.git
The following commit(s) were added to refs/heads/master by this push:
new 133cc8ea0 [doc][build] Update version to 3.7-SNAPSHOT
133cc8ea0 is described below
commit 133cc8ea0a1280bdef9102d6d22c7bb67dc4122b
Author: Kunni <[email protected]>
AuthorDate: Wed Mar 25 11:41:26 2026 +0800
[doc][build] Update version to 3.7-SNAPSHOT
This closes #4328.
Co-authored-by: Qwen-Coder <[email protected]>
---
.github/workflows/build_docs.yml | 6 +++---
Dockerfile | 2 +-
docs/config.toml | 5 +++--
pom.xml | 2 +-
4 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml
index f0de44a4d..c80beaec5 100644
--- a/.github/workflows/build_docs.yml
+++ b/.github/workflows/build_docs.yml
@@ -54,8 +54,8 @@ jobs:
matrix:
branch:
- master
+ - release-3.6
- release-3.5
- - release-3.4
steps:
- uses: actions/checkout@v6
@@ -69,8 +69,8 @@ jobs:
echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV}
if [ "${currentBranch}" = "master" ]; then
- echo "flink_alias=release-3.6" >> ${GITHUB_ENV}
- elif [ "${currentBranch}" = "release-3.5" ]; then
+ echo "flink_alias=release-3.7" >> ${GITHUB_ENV}
+ elif [ "${currentBranch}" = "release-3.6" ]; then
echo "flink_alias=stable" >> ${GITHUB_ENV}
fi
diff --git a/Dockerfile b/Dockerfile
index 17f3f4d8f..52f8bc9a7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@
FROM flink
-ARG FLINK_CDC_VERSION=3.6-SNAPSHOT
+ARG FLINK_CDC_VERSION=3.7-SNAPSHOT
ARG PIPELINE_DEFINITION_FILE
RUN mkdir -p /opt/flink-cdc
diff --git a/docs/config.toml b/docs/config.toml
index 9b653bca1..de2ee9021 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -34,11 +34,11 @@ pygmentsUseClasses = true
# where 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 = "3.6-SNAPSHOT"
+ Version = "3.7-SNAPSHOT"
# 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 = "3.6-SNAPSHOT"
+ VersionTitle = "3.7-SNAPSHOT"
# The branch for this version of Apache Flink CDC
Branch = "master"
@@ -58,6 +58,7 @@ pygmentsUseClasses = true
]
PreviousDocs = [
+ ["3.6", "https://nightlies.apache.org/flink/flink-cdc-docs-release-3.6"],
["3.5", "https://nightlies.apache.org/flink/flink-cdc-docs-release-3.5"],
["3.4", "https://nightlies.apache.org/flink/flink-cdc-docs-release-3.4"],
["3.3", "https://nightlies.apache.org/flink/flink-cdc-docs-release-3.3"],
diff --git a/pom.xml b/pom.xml
index d25309bd3..54e5f69c3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@ limitations under the License.
</scm>
<properties>
- <revision>3.6-SNAPSHOT</revision>
+ <revision>3.7-SNAPSHOT</revision>
<scala.binary.version>2.12</scala.binary.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Enforce single fork execution due to heavy mini cluster use in
the tests -->