Skip to content

Commit fb603f0

Browse files
committed
Release v1.7.0
1 parent 9075406 commit fb603f0

File tree

6 files changed

+25
-8
lines changed

6 files changed

+25
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For the Docker Image of `apache/hive:4.0.0`,
4444
you can use `1.4.0` of `io.github.linghengqian:hive-server2-jdbc-driver-thin` or `io.github.linghengqian:hive-server2-jdbc-driver-uber`.
4545

4646
For the Docker Image of `apache/hive:4.0.1`,
47-
you can use `1.6.0` of `io.github.linghengqian:hive-server2-jdbc-driver-thin` or `io.github.linghengqian:hive-server2-jdbc-driver-uber`.
47+
you can use `1.7.0` of `io.github.linghengqian:hive-server2-jdbc-driver-thin` or `io.github.linghengqian:hive-server2-jdbc-driver-uber`.
4848

4949
## FAQ
5050

doc/CHANGELOG.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,25 @@
22

33
## v1
44

5-
### 1.7.0-SNAPSHOT
5+
### 1.8.0-SNAPSHOT
6+
7+
Build from `apache/hive:rel/release-4.0.1`.
8+
9+
```
10+
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.8.0-SNAPSHOT
11+
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.8.0-SNAPSHOT
12+
```
13+
14+
### 1.7.0
615

716
1. Fix GraalVM CE warning about
817
`[WARNING] Properties file at 'jar:file:///home/root/.m2/repository/io/github/linghengqian/hive-server2-jdbc-driver-thin/1.6.0/hive-server2-jdbc-driver-thin-1.6.0.jar!/META-INF/native-image/io.grpc/grpc-netty-shaded/native-image.properties' does not match the recommended 'META-INF/native-image/io.github.linghengqian/hive-server2-jdbc-driver-thin/native-image.properties' layout.`.
918

1019
Build from `apache/hive:rel/release-4.0.1`.
1120

1221
```
13-
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.7.0-SNAPSHOT
14-
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.7.0-SNAPSHOT
22+
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.7.0
23+
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.7.0
1524
```
1625

1726
### 1.6.0
@@ -41,6 +50,7 @@ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.5.0
4150
### 1.4.0
4251

4352
Updates Apache-2.0 license header.
53+
4454
Build from `apache/hive:rel/release-4.0.0`.
4555

4656
```
@@ -51,6 +61,7 @@ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.4.0
5161
### 1.3.0
5262

5363
Fixes incorrect package used in unit tests.
64+
5465
Build from `apache/hive:rel/release-4.0.0`.
5566

5667
```
@@ -63,6 +74,7 @@ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.3.0
6374
Keep in sync with the Zookeeper Client version of `org.apache.hive.shims:hive-shims-common:4.0.0`.
6475
Tip: `apache/hive:master` is using `org.apache.zookeeper:zookeeper:3.8.4`,
6576
while `apache/hive:rel/release-4.0.0` is using `org.apache.zookeeper:zookeeper:3.8.3`.
77+
6678
Build from `apache/hive:rel/release-4.0.0`.
6779

6880
```
@@ -73,6 +85,7 @@ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.2.0
7385
### 1.1.0
7486

7587
Provides built-in GraalVM Reachability Metadata.
88+
7689
Build from `apache/hive:rel/release-4.0.0`.
7790

7891
```
@@ -86,6 +99,8 @@ This is the first `Thin JAR` build and an accompanying, intuitive `Uber JAR` bui
8699
`apache/hive:rel/release-4.0.0`.
87100
Fixed all class conflicts.
88101

102+
Build from `apache/hive:rel/release-4.0.0`.
103+
89104
```
90105
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.0.0
91106
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.0.0

doc/QuickStart.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use third-party builds of this project in any Maven project.
1313
<dependency>
1414
<groupId>io.github.linghengqian</groupId>
1515
<artifactId>hive-server2-jdbc-driver-thin</artifactId>
16-
<version>1.6.0</version>
16+
<version>1.7.0</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>com.zaxxer</groupId>
@@ -59,3 +59,5 @@ public class ExampleTest {
5959
}
6060
}
6161
```
62+
63+
More specific documentation for the current JAR can actually be found at https://hive.apache.org/docs/latest/hiveserver2-clients_30758725/ .

hive-server2-jdbc-driver-thin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.github.linghengqian</groupId>
2424
<artifactId>hive-parent</artifactId>
25-
<version>1.7.0-SNAPSHOT</version>
25+
<version>1.7.0</version>
2626
</parent>
2727

2828
<artifactId>hive-server2-jdbc-driver-thin</artifactId>

hive-server2-jdbc-driver-uber/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.github.linghengqian</groupId>
2424
<artifactId>hive-parent</artifactId>
25-
<version>1.7.0-SNAPSHOT</version>
25+
<version>1.7.0</version>
2626
</parent>
2727

2828
<artifactId>hive-server2-jdbc-driver-uber</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<groupId>io.github.linghengqian</groupId>
2323
<artifactId>hive-parent</artifactId>
24-
<version>1.7.0-SNAPSHOT</version>
24+
<version>1.7.0</version>
2525

2626
<packaging>pom</packaging>
2727
<name>${project.groupId}:${project.artifactId}</name>

0 commit comments

Comments
 (0)