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

william 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 5803d7d22 ORC-1572: Use ORC Format 1.0.0
5803d7d22 is described below

commit 5803d7d225944f3c9ee14499abb402e63cd78ea6
Author: William Hyun <[email protected]>
AuthorDate: Sat Jan 6 14:35:03 2024 -0800

    ORC-1572: Use ORC Format 1.0.0
    
    ### What changes were proposed in this pull request?
    This PR aims to use ORC Format 1.0.0.
    
    ### Why are the changes needed?
    Apache ORC Format 1.0.0 is released.
    
    ### How was this patch tested?
    Pass the CIs.
    
    This closes #1720
    
    Closes #1728 from williamhyun/format1.0.
    
    Authored-by: William Hyun <[email protected]>
    Signed-off-by: William Hyun <[email protected]>
---
 cmake_modules/ThirdpartyToolchain.cmake | 6 +++---
 java/pom.xml                            | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake 
b/cmake_modules/ThirdpartyToolchain.cmake
index 58ec26221..f0eaa618e 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-set(ORC_FORMAT_VERSION "1.0.0-beta")
+set(ORC_FORMAT_VERSION "1.0.0")
 set(LZ4_VERSION "1.9.3")
 set(SNAPPY_VERSION "1.1.7")
 set(ZLIB_VERSION "1.2.11")
@@ -72,8 +72,8 @@ endif ()
 # ----------------------------------------------------------------------
 # ORC Format
 ExternalProject_Add (orc-format_ep
-  URL 
"https://github.com/apache/orc-format/archive/refs/tags/v${ORC_FORMAT_VERSION}.tar.gz";
-  URL_HASH 
SHA256=28184fac3f182be5ead6e31972222b57754532ae94a89c13e9b9733378b60149
+  URL 
"https://downloads.apache.org/orc/orc-format-${ORC_FORMAT_VERSION}/orc-format-${ORC_FORMAT_VERSION}.tar.gz";
+  URL_HASH 
SHA256=739fae5ff94b1f812b413077280361045bf92e510ef04b34a610e23a945d8cd5
   CONFIGURE_COMMAND ""
   BUILD_COMMAND     ""
   INSTALL_COMMAND     ""
diff --git a/java/pom.xml b/java/pom.xml
index fbbf30902..2f0ea166f 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -75,7 +75,7 @@
     <maven.version>3.9.6</maven.version>
 
     <mockito.version>4.11.0</mockito.version>
-    <orc-format.version>1.0.0-SNAPSHOT</orc-format.version>
+    <orc-format.version>1.0.0</orc-format.version>
     <!-- Build Properties -->
     
<project.build.outputTimestamp>2023-05-15T16:29:49Z</project.build.outputTimestamp>
     <protobuf.version>3.25.1</protobuf.version>

Reply via email to