This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git
The following commit(s) were added to refs/heads/master by this push:
new a86959937 MINOR: Bump Thrift to 0.21.0 (#3049)
a86959937 is described below
commit a869599373388673f314b612396411a7dbde7af9
Author: Fokko Driesprong <[email protected]>
AuthorDate: Fri Nov 8 08:31:41 2024 +0100
MINOR: Bump Thrift to 0.21.0 (#3049)
This brings it in line with parquet-format:
https://github.com/apache/parquet-format/blob/dff0b3e6f02ed28e6b0753e921d53de53e63f506/pom.xml#L79
---
README.md | 10 +++++-----
dev/ci-before_install.sh | 2 +-
pom.xml | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index 52af4b703..9c68f5374 100644
--- a/README.md
+++ b/README.md
@@ -43,19 +43,19 @@ Parquet-Java uses Maven to build and depends on the thrift
compiler (protoc is n
To build and install the thrift compiler, run:
```
-wget -nv https://archive.apache.org/dist/thrift/0.20.0/thrift-0.20.0.tar.gz
-tar xzf thrift-0.20.0.tar.gz
-cd thrift-0.20.0
+wget -nv https://archive.apache.org/dist/thrift/0.21.0/thrift-0.21.0.tar.gz
+tar xzf thrift-0.21.0.tar.gz
+cd thrift-0.21.0
chmod +x ./configure
./configure --disable-libs
sudo make install -j
```
-If you're on OSX and use homebrew, you can instead install Thrift 0.20.0 with
`brew` and ensure that it comes first in your `PATH`.
+If you're on OSX and use homebrew, you can instead install Thrift 0.21.0 with
`brew` and ensure that it comes first in your `PATH`.
```
brew install thrift
-export PATH="/usr/local/opt/[email protected]/bin:$PATH"
+export PATH="/usr/local/opt/[email protected]/bin:$PATH"
```
### Build Parquet with Maven
diff --git a/dev/ci-before_install.sh b/dev/ci-before_install.sh
index 5b6880ed1..8ea330cb8 100755
--- a/dev/ci-before_install.sh
+++ b/dev/ci-before_install.sh
@@ -20,7 +20,7 @@
# This script gets invoked by the CI system in a "before install" step
################################################################################
-export THRIFT_VERSION=0.20.0
+export THRIFT_VERSION=0.21.0
set -e
date
diff --git a/pom.xml b/pom.xml
index 054da53c2..fa738370f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
<pig.version>0.16.0</pig.version>
<pig.classifier>h2</pig.classifier>
<thrift-maven-plugin.version>0.10.0</thrift-maven-plugin.version>
- <thrift.version>0.20.0</thrift.version>
+ <thrift.version>0.21.0</thrift.version>
<format.thrift.version>${thrift.version}</format.thrift.version>
<fastutil.version>8.5.13</fastutil.version>
<semver.api.version>0.9.33</semver.api.version>