Skip to content

Commit 65b7846

Browse files
authored
MINOR: Bump latest version to 1.14.4
1 parent 4fb7518 commit 65b7846

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
~ under the License.
1818
-->
1919

20-
Parquet Java (formerly Parquet MR) [![Build Status](https://github.com/apache/parquet-java/workflows/Test/badge.svg)](https://github.com/apache/parquet-java/actions)
20+
Parquet Java (formerly Parquet MR) [![CI Hadoop 3](https://github.com/apache/parquet-java/actions/workflows/ci-hadoop3.yml/badge.svg)](https://github.com/apache/parquet-java/actions/workflows/ci-hadoop3.yml)
2121
======
2222

2323
This repository contains a Java implementation of [Apache Parquet](https://parquet.apache.org/)
2424

2525
Apache Parquet is an open source, column-oriented data file format
2626
designed for efficient data storage and retrieval. It provides high
2727
performance compression and encoding schemes to handle complex data in
28-
bulk and is supported in many programming language and analytics
28+
bulk and is supported in many programming languages and analytics
2929
tools.
3030

3131
The [parquet-format](https://github.com/apache/parquet-format)
32-
repository contains the file format specificiation.
32+
repository contains the file format specification.
3333

3434
Parquet uses the [record shredding and assembly algorithm](https://github.com/julienledem/redelm/wiki/The-striping-and-assembly-algorithms-from-the-Dremel-paper) described in the Dremel paper to represent nested structures.
3535
You can find additional details about the format and intended use cases in our [Hadoop Summit 2013 presentation](http://www.slideshare.net/julienledem/parquet-hadoop-summit-2013)
@@ -166,29 +166,29 @@ The build runs in [GitHub Actions](https://github.com/apache/parquet-java/action
166166

167167
## Add Parquet as a dependency in Maven
168168

169-
The current release is version `1.14.3`.
169+
The current release is version `1.14.4`.
170170

171171
```xml
172172
<dependencies>
173173
<dependency>
174174
<groupId>org.apache.parquet</groupId>
175175
<artifactId>parquet-common</artifactId>
176-
<version>1.14.3</version>
176+
<version>1.14.4</version>
177177
</dependency>
178178
<dependency>
179179
<groupId>org.apache.parquet</groupId>
180180
<artifactId>parquet-encoding</artifactId>
181-
<version>1.14.3</version>
181+
<version>1.14.4</version>
182182
</dependency>
183183
<dependency>
184184
<groupId>org.apache.parquet</groupId>
185185
<artifactId>parquet-column</artifactId>
186-
<version>1.14.3</version>
186+
<version>1.14.4</version>
187187
</dependency>
188188
<dependency>
189189
<groupId>org.apache.parquet</groupId>
190190
<artifactId>parquet-hadoop</artifactId>
191-
<version>1.14.3</version>
191+
<version>1.14.4</version>
192192
</dependency>
193193
</dependencies>
194194
```

0 commit comments

Comments
 (0)