This is an automated email from the ASF dual-hosted git repository.

dongjoon-hyun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new d4984b6  [SPARK-56824] Bump version to 1.0.0-SNAPSHOT in `main` branch
d4984b6 is described below

commit d4984b6c6801dfde49051d6ba81045d82746c66b
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon May 11 09:52:38 2026 -0700

    [SPARK-56824] Bump version to 1.0.0-SNAPSHOT in `main` branch
    
    ### What changes were proposed in this pull request?
    
    This PR aims to bump version to `1.0.0-SNAPSHOT` in `main` branch.
    
    ### Why are the changes needed?
    
    `branch-0.9` is created. We need to distinguish `main` branch from 
`branch-0.9`.
    - https://github.com/apache/spark-kubernetes-operator/tree/branch-0.9
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    Generated-by: `Claude Opus 4.7 (1M context)`
    
    Closes #671 from dongjoon-hyun/SPARK-56824.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 build-tools/helm/spark-kubernetes-operator/Chart.yaml             | 4 ++--
 build-tools/helm/spark-kubernetes-operator/values.yaml            | 2 +-
 build.gradle                                                      | 2 +-
 docs/operations.md                                                | 6 +++---
 tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml | 4 ++--
 tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml | 4 ++--
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/build-tools/helm/spark-kubernetes-operator/Chart.yaml 
b/build-tools/helm/spark-kubernetes-operator/Chart.yaml
index 93189a9..a1c0a98 100644
--- a/build-tools/helm/spark-kubernetes-operator/Chart.yaml
+++ b/build-tools/helm/spark-kubernetes-operator/Chart.yaml
@@ -14,8 +14,8 @@
 # limitations under the License.
 apiVersion: v2
 name: spark-kubernetes-operator
-version: 1.7.0-dev
-appVersion: 0.9.0-SNAPSHOT
+version: 1.8.0-dev
+appVersion: 1.0.0-SNAPSHOT
 description: The official Helm chart to deploy Apache Spark, an unified engine 
for large-scale data analytics
 type: application
 home: https://apache.github.io/spark-kubernetes-operator/
diff --git a/build-tools/helm/spark-kubernetes-operator/values.yaml 
b/build-tools/helm/spark-kubernetes-operator/values.yaml
index 2863607..17d7537 100644
--- a/build-tools/helm/spark-kubernetes-operator/values.yaml
+++ b/build-tools/helm/spark-kubernetes-operator/values.yaml
@@ -16,7 +16,7 @@
 image:
   repository: apache/spark-kubernetes-operator
   pullPolicy: IfNotPresent
-  tag: 0.9.0-SNAPSHOT
+  tag: 1.0.0-SNAPSHOT
   # If image digest is set then it takes precedence and the image tag will be 
ignored
   # digest: ""
 
diff --git a/build.gradle b/build.gradle
index c0c6717..1dae531 100644
--- a/build.gradle
+++ b/build.gradle
@@ -38,7 +38,7 @@ assert 
JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_21): "Java 21
 
 allprojects {
   group = "org.apache.spark.k8s.operator"
-  version = "0.9.0-SNAPSHOT"
+  version = "1.0.0-SNAPSHOT"
 }
 
 tasks.register('buildDockerImage', Exec) {
diff --git a/docs/operations.md b/docs/operations.md
index 4c0a323..b72fa30 100644
--- a/docs/operations.md
+++ b/docs/operations.md
@@ -63,7 +63,7 @@ following table:
 
|------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
 | image.repository                                                 | The image 
repository of spark-kubernetes-operator.                                        
                                                                                
     | apache/spark-kubernetes-operator                                         
                               |
 | image.pullPolicy                                                 | The image 
pull policy of spark-kubernetes-operator.                                       
                                                                                
     | IfNotPresent                                                             
                               |
-| image.tag                                                        | The image 
tag of spark-kubernetes-operator.                                               
                                                                                
     | 0.9.0-SNAPSHOT                                                           
                               |
+| image.tag                                                        | The image 
tag of spark-kubernetes-operator.                                               
                                                                                
     | 1.0.0-SNAPSHOT                                                           
                               |
 | image.digest                                                     | The image 
digest of spark-kubernetes-operator. If set then it takes precedence and the 
image tag will be ignored.                                                      
        |                                                                       
                                  |
 | imagePullSecrets                                                 | The image 
pull secrets of spark-kubernetes-operator.                                      
                                                                                
     |                                                                          
                               |
 | operatorDeployment.replica                                       | Operator 
replica count. Must be 1 unless leader election is configured.                  
                                                                                
      | 1                                                                       
                                |
@@ -173,8 +173,8 @@ Check installation.
 ```bash
 $ helm list -A
 NAME      NAMESPACE REVISION UPDATED                              STATUS   
CHART                               APP VERSION
-us-west-1 us-west-1 1        2026-05-06 10:00:00.000000 -0700 PDT deployed 
spark-kubernetes-operator-1.7.0-dev 0.9.0-SNAPSHOT
-us-west-2 us-west-2 1        2026-05-06 10:00:03.000000 -0700 PDT deployed 
spark-kubernetes-operator-1.7.0-dev 0.9.0-SNAPSHOT
+us-west-1 us-west-1 1        2026-05-06 10:00:00.000000 -0700 PDT deployed 
spark-kubernetes-operator-1.8.0-dev 1.0.0-SNAPSHOT
+us-west-2 us-west-2 1        2026-05-06 10:00:03.000000 -0700 PDT deployed 
spark-kubernetes-operator-1.8.0-dev 1.0.0-SNAPSHOT
 ```
 
 Launch `pi.yaml` at `us-west-1` and `us-west-2` namespaces.
diff --git a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml 
b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml
index ecf62f5..da1f1f3 100644
--- a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml
+++ b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml
@@ -28,7 +28,7 @@ metadata:
     app.kubernetes.io/component: operator-dynamic-config-overrides
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/name: spark-kubernetes-operator
-    app.kubernetes.io/version: 0.9.0-SNAPSHOT
-    helm.sh/chart: spark-kubernetes-operator-1.7.0-dev
+    app.kubernetes.io/version: 1.0.0-SNAPSHOT
+    helm.sh/chart: spark-kubernetes-operator-1.8.0-dev
   name: spark-kubernetes-operator-dynamic-configuration
   namespace: default
diff --git a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml 
b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml
index 71ab1de..510d78b 100644
--- a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml
+++ b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml
@@ -28,7 +28,7 @@ metadata:
     app.kubernetes.io/component: operator-dynamic-config-overrides
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/name: spark-kubernetes-operator
-    app.kubernetes.io/version: 0.9.0-SNAPSHOT
-    helm.sh/chart: spark-kubernetes-operator-1.7.0-dev
+    app.kubernetes.io/version: 1.0.0-SNAPSHOT
+    helm.sh/chart: spark-kubernetes-operator-1.8.0-dev
   name: spark-kubernetes-operator-dynamic-configuration
   namespace: default


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to