You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by wi...@apache.org on 2022/01/27 23:51:55 UTC

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

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 e6a591a  ORC-1102: Upgrade ZSTD to 1.5.2 (#1026)
e6a591a is described below

commit e6a591ab437d0d825db835f0d24f605f3be40c8e
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)