Skip to content

Commit fb72d5c

Browse files
author
per
committed
release 0.10.0
1 parent 1bd636e commit fb72d5c

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>se.alipsa</groupId>
66
<artifactId>jparq</artifactId>
7-
<version>0.10.0-SNAPSHOT</version>
7+
<version>0.10.0</version>
88
<name>JDBC Driver for Parquet files</name>
99

1010
<description>JDBC Driver for reading Parquet files</description>
@@ -30,7 +30,7 @@
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3131

3232
<avro.version>1.12.1</avro.version>
33-
<checkstyle.version>12.1.1</checkstyle.version>
33+
<checkstyle.version>12.1.2</checkstyle.version>
3434
<checkstyle.plugin.version>3.6.0</checkstyle.plugin.version>
3535
<hadoop.version>3.4.2</hadoop.version>
3636
<jsqlparser.version>5.3</jsqlparser.version>

release.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Version history
22

3+
### 0.10.0 (2025-11-12)
4+
- Add support for grouping sets, rollup, and cube in the GROUP BY clause
5+
- Add support for qualified wildcards (table.*) in SELECT statements
6+
- Add support for the ARRAY constructor function to create array literals
7+
38
### 0.9.0 (2025-11-09)
49
- Add support for Windowing functions i.e:
510
- Ranking functions

src/main/java/se/alipsa/jparq/JParqDatabaseMetaData.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public String getDatabaseProductName() {
4444

4545
@Override
4646
public String getDatabaseProductVersion() {
47-
return "0.9.0";
47+
return "0.10.0";
4848
}
4949

5050
@Override
@@ -54,7 +54,7 @@ public String getDriverName() {
5454

5555
@Override
5656
public String getDriverVersion() {
57-
return "0.9.0";
57+
return "0.10.0";
5858
}
5959

6060
@Override
@@ -64,7 +64,7 @@ public int getDriverMajorVersion() {
6464

6565
@Override
6666
public int getDriverMinorVersion() {
67-
return 9;
67+
return 10;
6868
}
6969

7070
@Override

0 commit comments

Comments
 (0)