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 2022/01/28 00:53:02 UTC

[orc] branch branch-1.7 updated: ORC-1102: Upgrade ZSTD to 1.5.2 (#1026)

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

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


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 191c417  ORC-1102: Upgrade ZSTD to 1.5.2 (#1026)
191c417 is described below

commit 191c41705273ffa86dd95a0fc5594e45b24357c2
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Thu Jan 27 15:51:47 2022 -0800

    ORC-1102: Upgrade ZSTD to 1.5.2 (#1026)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to upgrade ZSTD to 1.5.2.
    
    ### Why are the changes needed?
    
    This will bring the latest bug fixes and improvements.
    - https://github.com/facebook/zstd/releases/tag/v1.5.2
    
    ### How was this patch tested?
    
    Pass the CIs.
---
 cmake_modules/ThirdpartyToolchain.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake
index d689bbe..bf60196 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -15,7 +15,7 @@ set(SNAPPY_VERSION "1.1.7")
 set(ZLIB_VERSION "1.2.11")
 set(GTEST_VERSION "1.8.0")
 set(PROTOBUF_VERSION "3.5.1")
-set(ZSTD_VERSION "1.5.1")
+set(ZSTD_VERSION "1.5.2")
 
 option(ORC_PREFER_STATIC_PROTOBUF "Prefer static protobuf library, if available" ON)
 option(ORC_PREFER_STATIC_SNAPPY   "Prefer static snappy library, if available"   ON)