You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2023/05/17 01:25:55 UTC

[orc] branch main updated: ORC-1422: Setting version to 2.0.0-SNAPSHOT

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 ce64f3b46 ORC-1422: Setting version to 2.0.0-SNAPSHOT
ce64f3b46 is described below

commit ce64f3b469f2d07c675410ce427eb9739fd5493e
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Tue May 16 18:25:44 2023 -0700

    ORC-1422: Setting version to 2.0.0-SNAPSHOT
    
    ### What changes were proposed in this pull request?
    
    `branch-1.9` was created. This PR aims to set version to `2.0.0-SNAPSHOT`.
    
    ### Why are the changes needed?
    
    To prepare Apache ORC 2.0.0.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #1494 from dongjoon-hyun/v20.
    
    Authored-by: Dongjoon Hyun <do...@apache.org>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 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             | 12 ++++++------
 java/shims/pom.xml       |  2 +-
 java/tools/pom.xml       |  2 +-
 11 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8e1308fd6..28841f3a2 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 "1")
-SET(CPACK_PACKAGE_VERSION_MINOR "9")
+SET(CPACK_PACKAGE_VERSION_MAJOR "2")
+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_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake_modules")
diff --git a/java/bench/core/pom.xml b/java/bench/core/pom.xml
index bc1912c02..9fad2ef2a 100644
--- a/java/bench/core/pom.xml
+++ b/java/bench/core/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/bench/hive/pom.xml b/java/bench/hive/pom.xml
index 0c3767a47..2db4c9458 100644
--- a/java/bench/hive/pom.xml
+++ b/java/bench/hive/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index da1e96696..6f4eca8eb 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/bench/spark/pom.xml b/java/bench/spark/pom.xml
index 9f8f041d7..7e8f6f4cc 100644
--- a/java/bench/spark/pom.xml
+++ b/java/bench/spark/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc-benchmarks</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/java/core/pom.xml b/java/core/pom.xml
index 1f764c2e2..fc82c21d2 100644
--- a/java/core/pom.xml
+++ b/java/core/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/examples/pom.xml b/java/examples/pom.xml
index 81f4c866c..60c714030 100644
--- a/java/examples/pom.xml
+++ b/java/examples/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/mapreduce/pom.xml b/java/mapreduce/pom.xml
index 47eeca1a6..b2fd37a2d 100644
--- a/java/mapreduce/pom.xml
+++ b/java/mapreduce/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/pom.xml b/java/pom.xml
index 6b51d4fbf..a03c8918e 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -21,7 +21,7 @@
   </parent>
   <groupId>org.apache.orc</groupId>
   <artifactId>orc</artifactId>
-  <version>1.9.0-SNAPSHOT</version>
+  <version>2.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache ORC</name>
@@ -74,7 +74,7 @@
     <min.hadoop.version>2.7.3</min.hadoop.version>
     <mockito.version>4.11.0</mockito.version>
     <!-- Build Properties -->
-    <project.build.outputTimestamp>2022-05-06T16:02:45Z</project.build.outputTimestamp>
+    <project.build.outputTimestamp>2023-05-15T16:29:49Z</project.build.outputTimestamp>
     <slf4j.version>2.0.7</slf4j.version>
     <storage-api.version>2.8.1</storage-api.version>
     <surefire.version>3.0.0-M5</surefire.version>
@@ -89,7 +89,7 @@
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-shims</artifactId>
-        <version>1.9.0-SNAPSHOT</version>
+        <version>2.0.0-SNAPSHOT</version>
         <exclusions>
           <exclusion>
             <groupId>org.apache.hadoop</groupId>
@@ -104,17 +104,17 @@
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-core</artifactId>
-        <version>1.9.0-SNAPSHOT</version>
+        <version>2.0.0-SNAPSHOT</version>
       </dependency>
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-mapreduce</artifactId>
-        <version>1.9.0-SNAPSHOT</version>
+        <version>2.0.0-SNAPSHOT</version>
       </dependency>
       <dependency>
         <groupId>org.apache.orc</groupId>
         <artifactId>orc-tools</artifactId>
-        <version>1.9.0-SNAPSHOT</version>
+        <version>2.0.0-SNAPSHOT</version>
       </dependency>
 
       <!-- inter-project depedencies -->
diff --git a/java/shims/pom.xml b/java/shims/pom.xml
index ee36b144c..407289ea7 100644
--- a/java/shims/pom.xml
+++ b/java/shims/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index 034877391..f761088c6 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.orc</groupId>
     <artifactId>orc</artifactId>
-    <version>1.9.0-SNAPSHOT</version>
+    <version>2.0.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>