This is an automated email from the ASF dual-hosted git repository.
gangwu 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 9b11410f1 Update readme to point to 1.14.0 release (#1356)
9b11410f1 is described below
commit 9b11410f15410b4d76d9f73f9545cf9110488517
Author: Vinoo Ganesh <[email protected]>
AuthorDate: Wed May 22 02:09:13 2024 -0400
Update readme to point to 1.14.0 release (#1356)
---
README.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 74987cb94..2d834e469 100644
--- a/README.md
+++ b/README.md
@@ -166,29 +166,29 @@ The build runs in [GitHub
Actions](https://github.com/apache/parquet-mr/actions)
## Add Parquet as a dependency in Maven
-The current release is version `1.13.0`
+The current release is version `1.14.0`
```xml
<dependencies>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-common</artifactId>
- <version>1.13.0</version>
+ <version>1.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-encoding</artifactId>
- <version>1.13.0</version>
+ <version>1.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-column</artifactId>
- <version>1.13.0</version>
+ <version>1.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-hadoop</artifactId>
- <version>1.13.0</version>
+ <version>1.14.0</version>
</dependency>
</dependencies>
```