Skip to content

Commit 3bf00ed

Browse files
authored
Release v1.5.0 (#11)
* Release v1.5.0 * Start preparing for 1.6.0-SNAPSHOT development
1 parent 03c5324 commit 3bf00ed

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ at https://central.sonatype.com/artifact/io.github.linghengqian/hive-server2-jdb
1818
</dependencies>
1919
```
2020

21-
The current project also provides a HiveServer2 JDBC Driver Uber JAR to simplify the steps of specifying the
22-
`classifier`.
23-
The current JAR also contains fixes for missing classes from the master branch of `apache/hive`.
21+
The current project also provides a HiveServer2 JDBC Driver Uber JAR to simplify the steps of specifying the `classifier`.
2422
The steps to use directly in Maven are as follows.
2523
The latest version is at https://central.sonatype.com/artifact/io.github.linghengqian/hive-server2-jdbc-driver-uber .
2624

@@ -39,7 +37,7 @@ The latest version is at https://central.sonatype.com/artifact/io.github.linghen
3937
Start a HiveServer2 instance through Docker Engine.
4038

4139
```bash
42-
docker run -d -p 10000:10000 -p 10002:10002 --env SERVICE_NAME=hiveserver2 apache/hive:4.0.0
40+
docker run -d -p 10000:10000 -p 10002:10002 --env SERVICE_NAME=hiveserver2 apache/hive:4.0.1
4341
```
4442

4543
Use third-party builds of this project in any Maven project.
@@ -49,7 +47,7 @@ Use third-party builds of this project in any Maven project.
4947
<dependency>
5048
<groupId>io.github.linghengqian</groupId>
5149
<artifactId>hive-server2-jdbc-driver-thin</artifactId>
52-
<version>1.4.0</version>
50+
<version>1.5.0</version>
5351
</dependency>
5452
<dependency>
5553
<groupId>com.zaxxer</groupId>

doc/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010

1111
Build from `apache/hive:rel/release-4.0.1`.
1212

13+
```
14+
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.5.0
15+
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.5.0
16+
```
17+
1318
### 1.4.0
1419

1520
Updates Apache-2.0 license header.

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.5.0-SNAPSHOT</version>
25+
<version>1.6.0-SNAPSHOT</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.5.0-SNAPSHOT</version>
25+
<version>1.6.0-SNAPSHOT</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.5.0-SNAPSHOT</version>
24+
<version>1.6.0-SNAPSHOT</version>
2525

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

0 commit comments

Comments
 (0)