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

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/main by this push:
     new 029008e98 ORC-2100: Setting version to 3.0.0-SNAPSHOT
029008e98 is described below

commit 029008e98221505101bb2d964e6100f661680668
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Feb 22 11:55:15 2026 -0800

    ORC-2100: Setting version to 3.0.0-SNAPSHOT
    
    ### What changes were proposed in this pull request?
    
    This PR aims to setting version to 3.0.0-SNAPSHOT.
    
    ### Why are the changes needed?
    
    Since `branch-2.3` is created, we need to bump `main` branch for next 
release.
    - https://github.com/apache/orc/tree/branch-2.3
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    Generated-by: `Gemini 3.1 Pro (High)` on `Antigravity`
    
    Closes #2541 from dongjoon-hyun/ORC-2100.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 CMakeLists.txt           |  4 ++--
 java/bench/core/pom.xml  |  2 +-
 java/bench/hive/pom.xml  |  2 +-
 java/bench/pom.xml       |  2 +-
 java/bench/spark/pom.xml |  2 +-
 java/core/pom.xml        |  2 +-
 java/examples/pom.xml    |  2 +-
 java/mapreduce/pom.xml   |  2 +-
 java/pom.xml             | 10 +++++-----
 java/shims/pom.xml       |  2 +-
 java/tools/pom.xml       |  2 +-
 meson.build              |  2 +-
 12 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c24060095..ae0f9b44f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,8 +26,8 @@ endif ()
 project(ORC C CXX)
 
 # Version number of package
-SET(CPACK_PACKAGE_VERSION_MAJOR "2")
-SET(CPACK_PACKAGE_VERSION_MINOR "3")
+SET(CPACK_PACKAGE_VERSION_MAJOR "3")
+SET(CPACK_PACKAGE_VERSION_MINOR "0")
 SET(CPACK_PACKAGE_VERSION_PATCH "0-SNAPSHOT")
 SET(ORC_VERSION 
"${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
 set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # For clang-tidy.
diff --git a/java/bench/core/pom.xml b/java/bench/core/pom.xml
index 3917bd92c..2a66be075 100644
--- a/java/bench/core/pom.xml
+++ b/java/bench/core/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/bench/hive/pom.xml b/java/bench/hive/pom.xml
index fc1c04b25..c7b61c62e 100644
--- a/java/bench/hive/pom.xml
+++ b/java/bench/hive/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index a87625580..117d4d65d 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/bench/spark/pom.xml b/java/bench/spark/pom.xml
index 8cc74e633..12ee5a74b 100644
--- a/java/bench/spark/pom.xml
+++ b/java/bench/spark/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/core/pom.xml b/java/core/pom.xml
index 47cd5c146..db807bce7 100644
--- a/java/core/pom.xml
+++ b/java/core/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/examples/pom.xml b/java/examples/pom.xml
index 662b9a42f..01f578fb1 100644
--- a/java/examples/pom.xml
+++ b/java/examples/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/mapreduce/pom.xml b/java/mapreduce/pom.xml
index e039054a8..3d39acbe3 100644
--- a/java/mapreduce/pom.xml
+++ b/java/mapreduce/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/pom.xml b/java/pom.xml
index 8ce39a3b2..9ce759dec 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -26,7 +26,7 @@
   </parent>
   <groupId>org.apache.orc</groupId>
   <artifactId>orc</artifactId>
-  <version>2.3.0-SNAPSHOT</version>
+  <version>3.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache ORC</name>
@@ -107,7 +107,7 @@
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-shims</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>3.0.0-SNAPSHOT</version>
         <exclusions>
           <exclusion>
             <groupId>org.apache.hadoop</groupId>
@@ -122,17 +122,17 @@
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-core</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>3.0.0-SNAPSHOT</version>
       </dependency>
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-mapreduce</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>3.0.0-SNAPSHOT</version>
       </dependency>
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-tools</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>3.0.0-SNAPSHOT</version>
       </dependency>
 
       <!-- inter-project dependencies -->
diff --git a/java/shims/pom.xml b/java/shims/pom.xml
index ce5d63014..a8f6636d6 100644
--- a/java/shims/pom.xml
+++ b/java/shims/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index 952163559..a82d5f117 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>3.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/meson.build b/meson.build
index 152909060..25790f9a9 100644
--- a/meson.build
+++ b/meson.build
@@ -18,7 +18,7 @@
 project(
     'orc',
     'cpp',
-    version: '2.3.0-SNAPSHOT',
+    version: '3.0.0-SNAPSHOT',
     license: 'Apache-2.0',
     meson_version: '>=1.3.0',
     default_options: [

Reply via email to