Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
matrix:
branch:
- master
- release-3.6
- release-3.5
- release-3.4

steps:
- uses: actions/checkout@v6
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand Down
Loading