Skip to content

Commit 51fe002

Browse files
authored
[release] Update version to 1.9-SNAPSHOT (#798)
1 parent 8938658 commit 51fe002

File tree

18 files changed

+24
-23
lines changed

18 files changed

+24
-23
lines changed

.asf.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ github:
1818
release-1.5: {}
1919
release-1.6: {}
2020
release-1.7: {}
21+
release-1.8: {}
2122

2223

2324
notifications:

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
matrix:
2929
branch:
3030
- main
31-
- release-1.6
3231
- release-1.7
32+
- release-1.8
3333
steps:
3434
- uses: actions/checkout@v3
3535
with:
@@ -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.8" >> ${GITHUB_ENV}
45-
elif [ "${currentBranch}" = "release-1.7" ]; then
44+
echo "flink_alias=release-1.9" >> ${GITHUB_ENV}
45+
elif [ "${currentBranch}" = "release-1.8" ]; then
4646
echo "flink_alias=stable" >> ${GITHUB_ENV}
4747
else
4848
echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN cd /app/tools/license; mkdir jars; cd jars; \
3636
FROM eclipse-temurin:11-jre-jammy
3737
ENV FLINK_HOME=/opt/flink
3838
ENV FLINK_PLUGINS_DIR=$FLINK_HOME/plugins
39-
ENV OPERATOR_VERSION=1.8-SNAPSHOT
39+
ENV OPERATOR_VERSION=1.9-SNAPSHOT
4040
ENV OPERATOR_JAR=flink-kubernetes-operator-$OPERATOR_VERSION-shaded.jar
4141
ENV WEBHOOK_JAR=flink-kubernetes-webhook-$OPERATOR_VERSION-shaded.jar
4242
ENV KUBERNETES_STANDALONE_JAR=flink-kubernetes-standalone-$OPERATOR_VERSION.jar

docs/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ 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.8-SNAPSHOT"
37+
Version = "1.9-SNAPSHOT"
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.8-SNAPSHOT"
41+
VersionTitle = "1.9-SNAPSHOT"
4242

4343
# The branch for this version of the Apache Flink Kubernetes Operator
4444
Branch = "main"
@@ -63,8 +63,8 @@ pygmentsUseClasses = true
6363
]
6464

6565
PreviousDocs = [
66+
["1.8", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.8"],
6667
["1.7", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.7"],
67-
["1.6", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.6"]
6868
]
6969

7070
[markup]

examples/autoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.flink</groupId>
2525
<artifactId>flink-kubernetes-operator-parent</artifactId>
26-
<version>1.8-SNAPSHOT</version>
26+
<version>1.9-SNAPSHOT</version>
2727
<relativePath>../..</relativePath>
2828
</parent>
2929

examples/flink-beam-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.flink</groupId>
2525
<artifactId>flink-kubernetes-operator-parent</artifactId>
26-
<version>1.8-SNAPSHOT</version>
26+
<version>1.9-SNAPSHOT</version>
2727
<relativePath>../..</relativePath>
2828
</parent>
2929

examples/flink-sql-runner-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.flink</groupId>
2525
<artifactId>flink-kubernetes-operator-parent</artifactId>
26-
<version>1.8-SNAPSHOT</version>
26+
<version>1.9-SNAPSHOT</version>
2727
<relativePath>../..</relativePath>
2828
</parent>
2929

examples/kubernetes-client-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ under the License.
2424
<parent>
2525
<groupId>org.apache.flink</groupId>
2626
<artifactId>flink-kubernetes-operator-parent</artifactId>
27-
<version>1.8-SNAPSHOT</version>
27+
<version>1.9-SNAPSHOT</version>
2828
<relativePath>../..</relativePath>
2929
</parent>
3030

@@ -40,7 +40,7 @@ under the License.
4040
<dependency>
4141
<groupId>org.apache.flink</groupId>
4242
<artifactId>flink-kubernetes-operator</artifactId>
43-
<version>1.8-SNAPSHOT</version>
43+
<version>1.9-SNAPSHOT</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
</dependencies>

flink-autoscaler-plugin-jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<artifactId>flink-kubernetes-operator-parent</artifactId>
2525
<groupId>org.apache.flink</groupId>
26-
<version>1.8-SNAPSHOT</version>
26+
<version>1.9-SNAPSHOT</version>
2727
<relativePath>..</relativePath>
2828
</parent>
2929

flink-autoscaler-standalone/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.flink</groupId>
2525
<artifactId>flink-kubernetes-operator-parent</artifactId>
26-
<version>1.8-SNAPSHOT</version>
26+
<version>1.9-SNAPSHOT</version>
2727
<relativePath>..</relativePath>
2828
</parent>
2929

0 commit comments

Comments
 (0)