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

commit 0494f6787b000e858354bf1dad64eb0ff5c9d22d
Author: Gyula Fora <[email protected]>
AuthorDate: Fri Aug 14 15:56:42 2026 +0200

    [release] Update version to 1.17-SNAPSHOT
---
 Dockerfile                                  | 2 +-
 docs/config.toml                            | 4 ++--
 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 ++--
 examples/pom.xml                            | 2 +-
 flink-autoscaler-plugin-jdbc/pom.xml        | 2 +-
 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, 20 insertions(+), 20 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index c7c20071..da471030 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -38,7 +38,7 @@ RUN cd /app/tools/license; mkdir jars; cd jars; \
 FROM eclipse-temurin:${JAVA_VERSION}-jre-jammy
 ENV FLINK_HOME=/opt/flink
 ENV FLINK_PLUGINS_DIR=$FLINK_HOME/plugins
-ENV OPERATOR_VERSION=1.16-SNAPSHOT
+ENV OPERATOR_VERSION=1.17-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 2146620e..c5003d86 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.16-SNAPSHOT"
+  Version = "1.17-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.16-SNAPSHOT"
+  VersionTitle = "1.17-SNAPSHOT"
 
   # The branch for this version of the Apache Flink Kubernetes Operator
   Branch = "main"
diff --git a/examples/autoscaling/pom.xml b/examples/autoscaling/pom.xml
index 2772cf6b..fd4fce2e 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-examples</artifactId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/examples/flink-beam-example/pom.xml 
b/examples/flink-beam-example/pom.xml
index 92babdc7..6de17927 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-examples</artifactId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/examples/flink-sql-runner-example/pom.xml 
b/examples/flink-sql-runner-example/pom.xml
index a141f5d8..fa6b1433 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-examples</artifactId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/examples/kubernetes-client-examples/pom.xml 
b/examples/kubernetes-client-examples/pom.xml
index 7577801f..041e0951 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-examples</artifactId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
@@ -35,7 +35,7 @@ under the License.
         <dependency>
             <groupId>org.apache.flink</groupId>
             <artifactId>flink-kubernetes-operator</artifactId>
-            <version>1.16-SNAPSHOT</version>
+            <version>1.17-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
     </dependencies>
diff --git a/examples/pom.xml b/examples/pom.xml
index ffc207c4..9f899844 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-autoscaler-plugin-jdbc/pom.xml 
b/flink-autoscaler-plugin-jdbc/pom.xml
index 10709ef5..b567df86 100644
--- a/flink-autoscaler-plugin-jdbc/pom.xml
+++ b/flink-autoscaler-plugin-jdbc/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>1.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-autoscaler-standalone/pom.xml 
b/flink-autoscaler-standalone/pom.xml
index d07d9e4f..dae638ed 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-autoscaler/pom.xml b/flink-autoscaler/pom.xml
index 19e84f70..739d9707 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-docs/pom.xml b/flink-kubernetes-docs/pom.xml
index 43fc614b..4052062b 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-operator-api/pom.xml 
b/flink-kubernetes-operator-api/pom.xml
index 88bc728a..dc132919 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-operator/pom.xml 
b/flink-kubernetes-operator/pom.xml
index 76946306..e819728c 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-standalone/pom.xml 
b/flink-kubernetes-standalone/pom.xml
index 65104324..00860cb5 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-webhook/pom.xml b/flink-kubernetes-webhook/pom.xml
index dd545a81..cf3bad42 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.16-SNAPSHOT</version>
+        <version>1.17-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
diff --git a/helm/flink-kubernetes-operator/Chart.yaml 
b/helm/flink-kubernetes-operator/Chart.yaml
index b5902656..ec734c97 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.16-SNAPSHOT
-appVersion: 1.16-SNAPSHOT
+version: 1.17-SNAPSHOT
+appVersion: 1.17-SNAPSHOT
 icon: https://flink.apache.org/img/logo/png/50/color_50.png
diff --git a/pom.xml b/pom.xml
index 8da0c1c6..235ea4c7 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.16-SNAPSHOT</version>
+    <version>1.17-SNAPSHOT</version>
 
     <name>Flink Kubernetes: </name>
     <packaging>pom</packaging>

Reply via email to