This is an automated email from the ASF dual-hosted git repository.
gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 2c7c078d [release] Update version to 1.8-SNAPSHOT
2c7c078d is described below
commit 2c7c078dd029c24005471cf2a30725afd739d0db
Author: Gyula Fora <[email protected]>
AuthorDate: Wed Nov 15 13:22:21 2023 +0100
[release] Update version to 1.8-SNAPSHOT
---
.asf.yaml | 1 +
.github/workflows/docs.yaml | 6 +++---
Dockerfile | 2 +-
docs/config.toml | 8 ++++----
examples/autoscaling/pom.xml | 2 +-
examples/flink-beam-example/pom.xml | 2 +-
examples/flink-sql-runner-example/pom.xml | 2 +-
examples/kubernetes-client-examples/pom.xml | 4 ++--
flink-autoscaler-standalone/pom.xml | 2 +-
flink-autoscaler/pom.xml | 2 +-
flink-kubernetes-docs/pom.xml | 2 +-
flink-kubernetes-operator-api/pom.xml | 2 +-
flink-kubernetes-operator/pom.xml | 2 +-
flink-kubernetes-standalone/pom.xml | 2 +-
flink-kubernetes-webhook/pom.xml | 2 +-
helm/flink-kubernetes-operator/Chart.yaml | 4 ++--
pom.xml | 2 +-
17 files changed, 24 insertions(+), 23 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index f6104dcb..7d48cb75 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -17,6 +17,7 @@ github:
release-1.4: {}
release-1.5: {}
release-1.6: {}
+ release-1.7: {}
notifications:
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index 1df300fa..4068df96 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -28,8 +28,8 @@ jobs:
matrix:
branch:
- main
- - release-1.5
- release-1.6
+ - release-1.7
steps:
- uses: actions/checkout@v3
with:
@@ -41,8 +41,8 @@ jobs:
echo "flink_branch=${currentBranch}"
echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV}
if [ "${currentBranch}" = "main" ]; then
- echo "flink_alias=release-1.7" >> ${GITHUB_ENV}
- elif [ "${currentBranch}" = "release-1.6" ]; then
+ echo "flink_alias=release-1.8" >> ${GITHUB_ENV}
+ elif [ "${currentBranch}" = "release-1.7" ]; then
echo "flink_alias=stable" >> ${GITHUB_ENV}
else
echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV}
diff --git a/Dockerfile b/Dockerfile
index 0d98ec1f..3ee36da2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -36,7 +36,7 @@ RUN cd /app/tools/license; mkdir jars; cd jars; \
FROM eclipse-temurin:11-jre-jammy
ENV FLINK_HOME=/opt/flink
ENV FLINK_PLUGINS_DIR=$FLINK_HOME/plugins
-ENV OPERATOR_VERSION=1.7-SNAPSHOT
+ENV OPERATOR_VERSION=1.8-SNAPSHOT
ENV OPERATOR_JAR=flink-kubernetes-operator-$OPERATOR_VERSION-shaded.jar
ENV WEBHOOK_JAR=flink-kubernetes-webhook-$OPERATOR_VERSION-shaded.jar
ENV KUBERNETES_STANDALONE_JAR=flink-kubernetes-standalone-$OPERATOR_VERSION.jar
diff --git a/docs/config.toml b/docs/config.toml
index 92faf507..4b5317ed 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -34,11 +34,11 @@ 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.7-SNAPSHOT"
+ Version = "1.8-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 = "1.7-SNAPSHOT"
+ VersionTitle = "1.8-SNAPSHOT"
# The branch for this version of the Apache Flink Kubernetes Operator
Branch = "main"
@@ -63,8 +63,8 @@ pygmentsUseClasses = true
]
PreviousDocs = [
- ["1.6",
"https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.6"],
- ["1.5",
"https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5"]
+ ["1.7",
"https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.7"],
+ ["1.6",
"https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.6"]
]
[markup]
diff --git a/examples/autoscaling/pom.xml b/examples/autoscaling/pom.xml
index f4bea0ac..9626cf2a 100644
--- a/examples/autoscaling/pom.xml
+++ b/examples/autoscaling/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
diff --git a/examples/flink-beam-example/pom.xml
b/examples/flink-beam-example/pom.xml
index b215f2dc..8a69a2a2 100644
--- a/examples/flink-beam-example/pom.xml
+++ b/examples/flink-beam-example/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
diff --git a/examples/flink-sql-runner-example/pom.xml
b/examples/flink-sql-runner-example/pom.xml
index e448505b..5beac7f8 100644
--- a/examples/flink-sql-runner-example/pom.xml
+++ b/examples/flink-sql-runner-example/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
diff --git a/examples/kubernetes-client-examples/pom.xml
b/examples/kubernetes-client-examples/pom.xml
index d2de74ef..a6551b1b 100644
--- a/examples/kubernetes-client-examples/pom.xml
+++ b/examples/kubernetes-client-examples/pom.xml
@@ -24,7 +24,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -40,7 +40,7 @@ under the License.
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
diff --git a/flink-autoscaler-standalone/pom.xml
b/flink-autoscaler-standalone/pom.xml
index 5e572d1c..ec7af293 100644
--- a/flink-autoscaler-standalone/pom.xml
+++ b/flink-autoscaler-standalone/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-autoscaler/pom.xml b/flink-autoscaler/pom.xml
index 584b175e..7f15da87 100644
--- a/flink-autoscaler/pom.xml
+++ b/flink-autoscaler/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-kubernetes-docs/pom.xml b/flink-kubernetes-docs/pom.xml
index 54957c1e..a36e1ed6 100644
--- a/flink-kubernetes-docs/pom.xml
+++ b/flink-kubernetes-docs/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-kubernetes-operator-api/pom.xml
b/flink-kubernetes-operator-api/pom.xml
index 12a0c1d3..f4a0c3c2 100644
--- a/flink-kubernetes-operator-api/pom.xml
+++ b/flink-kubernetes-operator-api/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-kubernetes-operator/pom.xml
b/flink-kubernetes-operator/pom.xml
index ee877b38..ebdb2fbc 100644
--- a/flink-kubernetes-operator/pom.xml
+++ b/flink-kubernetes-operator/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-kubernetes-standalone/pom.xml
b/flink-kubernetes-standalone/pom.xml
index ebdc41e3..ed5474c5 100644
--- a/flink-kubernetes-standalone/pom.xml
+++ b/flink-kubernetes-standalone/pom.xml
@@ -24,7 +24,7 @@ under the License.
<parent>
<artifactId>flink-kubernetes-operator-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/flink-kubernetes-webhook/pom.xml b/flink-kubernetes-webhook/pom.xml
index 53b6e407..4b8c7cd0 100644
--- a/flink-kubernetes-webhook/pom.xml
+++ b/flink-kubernetes-webhook/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/helm/flink-kubernetes-operator/Chart.yaml
b/helm/flink-kubernetes-operator/Chart.yaml
index 6661b4a9..13d918f2 100644
--- a/helm/flink-kubernetes-operator/Chart.yaml
+++ b/helm/flink-kubernetes-operator/Chart.yaml
@@ -21,6 +21,6 @@ apiVersion: v2
name: flink-kubernetes-operator
description: A Helm chart for the Apache Flink Kubernetes Operator
type: application
-version: 1.7-SNAPSHOT
-appVersion: 1.7-SNAPSHOT
+version: 1.8-SNAPSHOT
+appVersion: 1.8-SNAPSHOT
icon: https://flink.apache.org/img/logo/png/50/color_50.png
diff --git a/pom.xml b/pom.xml
index f02e1082..e255c56a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@ under the License.
<groupId>org.apache.flink</groupId>
<artifactId>flink-kubernetes-operator-parent</artifactId>
- <version>1.7-SNAPSHOT</version>
+ <version>1.8-SNAPSHOT</version>
<name>Flink Kubernetes: </name>
<packaging>pom</packaging>