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

roryqi pushed a commit to branch branch-0.10
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git

commit 7ae4613efa44c7b5bd53c423250071073de62210
Author: roryqi <[email protected]>
AuthorDate: Fri Nov 22 18:30:03 2024 +0800

    [MINOR] Bump version to 0.11.0-SNAPSHOT (#2249)
    
    ### What changes were proposed in this pull request?
    Bump version to 0.11.0-SNAPSHOT
    I run the command in my Mac
    ```
     gsed  -i 
"s%<version>0.10.0-SNAPSHOT</version>%<version>0.11.0-SNAPSHOT</version>%" 
$(grep -l "<groupId>org.apache.uniffle</groupId>" $(find . -name pom.xml))
    ```
    
    ### Why are the changes needed?
    Release 0.10.0
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    No need.
---
 cli/pom.xml                           | 2 +-
 client-mr/core/pom.xml                | 4 ++--
 client-mr/hadoop2.8/pom.xml           | 2 +-
 client-mr/hadoop3.2/pom.xml           | 2 +-
 client-spark/common/pom.xml           | 4 ++--
 client-spark/spark2-shaded/pom.xml    | 2 +-
 client-spark/spark2/pom.xml           | 2 +-
 client-spark/spark3-shaded/pom.xml    | 2 +-
 client-spark/spark3/pom.xml           | 2 +-
 client-tez/pom.xml                    | 4 ++--
 client/pom.xml                        | 4 ++--
 common/pom.xml                        | 2 +-
 coordinator/pom.xml                   | 2 +-
 dashboard/pom.xml                     | 2 +-
 deploy/kubernetes/pom.xml             | 2 +-
 integration-test/common/pom.xml       | 4 ++--
 integration-test/mr/pom.xml           | 4 ++--
 integration-test/spark-common/pom.xml | 4 ++--
 integration-test/spark2/pom.xml       | 2 +-
 integration-test/spark3/pom.xml       | 2 +-
 integration-test/tez/pom.xml          | 4 ++--
 internal-client/pom.xml               | 4 ++--
 pom.xml                               | 2 +-
 proto/pom.xml                         | 2 +-
 server-common/pom.xml                 | 2 +-
 server/pom.xml                        | 2 +-
 storage/pom.xml                       | 2 +-
 27 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/cli/pom.xml b/cli/pom.xml
index 54477d431..ee1379b8a 100644
--- a/cli/pom.xml
+++ b/cli/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/client-mr/core/pom.xml b/client-mr/core/pom.xml
index d14e2f7ee..6264eba31 100644
--- a/client-mr/core/pom.xml
+++ b/client-mr/core/pom.xml
@@ -22,13 +22,13 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.uniffle</groupId>
     <artifactId>rss-client-mr</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Apache Uniffle Client (MapReduce)</name>
 
diff --git a/client-mr/hadoop2.8/pom.xml b/client-mr/hadoop2.8/pom.xml
index e26c1602d..80d5f87c3 100644
--- a/client-mr/hadoop2.8/pom.xml
+++ b/client-mr/hadoop2.8/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>hadoop2.8-shim</artifactId>
diff --git a/client-mr/hadoop3.2/pom.xml b/client-mr/hadoop3.2/pom.xml
index 680b7ad8e..db30cf2d5 100644
--- a/client-mr/hadoop3.2/pom.xml
+++ b/client-mr/hadoop3.2/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <artifactId>hadoop3.2-shim</artifactId>
diff --git a/client-spark/common/pom.xml b/client-spark/common/pom.xml
index 9b6f1cdbc..639864b19 100644
--- a/client-spark/common/pom.xml
+++ b/client-spark/common/pom.xml
@@ -24,12 +24,12 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <artifactId>rss-client-spark-common</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Apache Uniffle Client (Spark Common)</name>
 
diff --git a/client-spark/spark2-shaded/pom.xml 
b/client-spark/spark2-shaded/pom.xml
index 274255abd..e366be2e4 100644
--- a/client-spark/spark2-shaded/pom.xml
+++ b/client-spark/spark2-shaded/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/client-spark/spark2/pom.xml b/client-spark/spark2/pom.xml
index 45f8243b2..b2a6e0cc3 100644
--- a/client-spark/spark2/pom.xml
+++ b/client-spark/spark2/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/client-spark/spark3-shaded/pom.xml 
b/client-spark/spark3-shaded/pom.xml
index 4ead20a0f..b7a98093a 100644
--- a/client-spark/spark3-shaded/pom.xml
+++ b/client-spark/spark3-shaded/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/client-spark/spark3/pom.xml b/client-spark/spark3/pom.xml
index f55b655ee..94a124d0b 100644
--- a/client-spark/spark3/pom.xml
+++ b/client-spark/spark3/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/client-tez/pom.xml b/client-tez/pom.xml
index 3f7ba7a02..476398b0a 100644
--- a/client-tez/pom.xml
+++ b/client-tez/pom.xml
@@ -23,13 +23,13 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.uniffle</groupId>
     <artifactId>rss-client-tez</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Apache Uniffle Client (Tez)</name>
 
diff --git a/client/pom.xml b/client/pom.xml
index c33153750..44d375fdb 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.uniffle</groupId>
   <artifactId>rss-client</artifactId>
-  <version>0.10.0-SNAPSHOT</version>
+  <version>0.11.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>Apache Uniffle Client</name>
 
diff --git a/common/pom.xml b/common/pom.xml
index ee7f352a1..5e307906b 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/coordinator/pom.xml b/coordinator/pom.xml
index 0ffbc770b..0081adcac 100644
--- a/coordinator/pom.xml
+++ b/coordinator/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/dashboard/pom.xml b/dashboard/pom.xml
index ddeb1eaf0..9e1b19f59 100644
--- a/dashboard/pom.xml
+++ b/dashboard/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>dashboard</artifactId>
diff --git a/deploy/kubernetes/pom.xml b/deploy/kubernetes/pom.xml
index 421cacc28..24a254f70 100644
--- a/deploy/kubernetes/pom.xml
+++ b/deploy/kubernetes/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/integration-test/common/pom.xml b/integration-test/common/pom.xml
index ab0f9d881..dbf7f374a 100644
--- a/integration-test/common/pom.xml
+++ b/integration-test/common/pom.xml
@@ -23,13 +23,13 @@
     <parent>
         <groupId>org.apache.uniffle</groupId>
         <artifactId>uniffle-parent</artifactId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.uniffle</groupId>
     <artifactId>rss-integration-common-test</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Apache Uniffle Integration Test (Common)</name>
 
diff --git a/integration-test/mr/pom.xml b/integration-test/mr/pom.xml
index 98a276f40..5c190bf4c 100644
--- a/integration-test/mr/pom.xml
+++ b/integration-test/mr/pom.xml
@@ -21,14 +21,14 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.apache.uniffle</groupId>
     <artifactId>rss-integration-mr-test</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Apache Uniffle Integration Test (MapReduce)</name>
 
diff --git a/integration-test/spark-common/pom.xml 
b/integration-test/spark-common/pom.xml
index cd37c0de7..9cfb14baf 100644
--- a/integration-test/spark-common/pom.xml
+++ b/integration-test/spark-common/pom.xml
@@ -22,14 +22,14 @@
   <parent>
     <artifactId>uniffle-parent</artifactId>
     <groupId>org.apache.uniffle</groupId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.uniffle</groupId>
   <artifactId>rss-integration-spark-common-test</artifactId>
-  <version>0.10.0-SNAPSHOT</version>
+  <version>0.11.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>Apache Uniffle Integration Test (Spark Common)</name>
 
diff --git a/integration-test/spark2/pom.xml b/integration-test/spark2/pom.xml
index 5bc10a5ff..57bd2361a 100644
--- a/integration-test/spark2/pom.xml
+++ b/integration-test/spark2/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <artifactId>uniffle-parent</artifactId>
     <groupId>org.apache.uniffle</groupId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/integration-test/spark3/pom.xml b/integration-test/spark3/pom.xml
index 30401dba7..0ee8031e4 100644
--- a/integration-test/spark3/pom.xml
+++ b/integration-test/spark3/pom.xml
@@ -22,7 +22,7 @@
     <parent>
         <artifactId>uniffle-parent</artifactId>
         <groupId>org.apache.uniffle</groupId>
-        <version>0.10.0-SNAPSHOT</version>
+        <version>0.11.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/integration-test/tez/pom.xml b/integration-test/tez/pom.xml
index c4b8937ad..1bf4a5e31 100644
--- a/integration-test/tez/pom.xml
+++ b/integration-test/tez/pom.xml
@@ -21,14 +21,14 @@
   <parent>
     <artifactId>uniffle-parent</artifactId>
     <groupId>org.apache.uniffle</groupId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.uniffle</groupId>
   <artifactId>rss-integration-tez-test</artifactId>
-  <version>0.10.0-SNAPSHOT</version>
+  <version>0.11.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>Apache Uniffle Integration Test (Tez)</name>
 
diff --git a/internal-client/pom.xml b/internal-client/pom.xml
index 0690b0e2e..4098ffaf6 100644
--- a/internal-client/pom.xml
+++ b/internal-client/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.uniffle</groupId>
   <artifactId>rss-internal-client</artifactId>
-  <version>0.10.0-SNAPSHOT</version>
+  <version>0.11.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>Apache Uniffle Internal Client</name>
 
diff --git a/pom.xml b/pom.xml
index 80899ddba..11c2d1296 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 
   <groupId>org.apache.uniffle</groupId>
   <artifactId>uniffle-parent</artifactId>
-  <version>0.10.0-SNAPSHOT</version>
+  <version>0.11.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Apache Uniffle</name>
   <description>A high performance, general purpose Remote Shuffle 
Service.</description>
diff --git a/proto/pom.xml b/proto/pom.xml
index 6862b1c97..73a0dfc49 100644
--- a/proto/pom.xml
+++ b/proto/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>uniffle-parent</artifactId>
     <groupId>org.apache.uniffle</groupId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>rss-proto</artifactId>
diff --git a/server-common/pom.xml b/server-common/pom.xml
index 3cb0b04c9..293e7341c 100644
--- a/server-common/pom.xml
+++ b/server-common/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/server/pom.xml b/server/pom.xml
index 3a82ca107..5dd176387 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/storage/pom.xml b/storage/pom.xml
index cb5b14e46..ac3f02ff3 100644
--- a/storage/pom.xml
+++ b/storage/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uniffle</groupId>
     <artifactId>uniffle-parent</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

Reply via email to