Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.1.0 #6

Merged
merged 2 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,17 @@ More background at https://lists.apache.org/thread/63lr45kyh78s64spwsjxjy8zdyzpr

## Release Note

### 1.1.0

Provides built-in GraalVM Reachability Metadata.
Build from `apache/hive:rel/release-4.0.0`.

```
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.1.0

io.github.linghengqian:hive-server2-jdbc-driver-uber:1.1.0
```

### 1.0.0

This is the first `Thin JAR` build and an accompanying, intuitive `Uber JAR` build for the HiveServer2 JDBC driver from
Expand Down
2 changes: 2 additions & 0 deletions doc/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ gnome-text-editor ~/.m2/settings.xml
</settings>
```

Modify the `project.version` or `parent.version` of all `pom.xml` to the version we need to release.

Then execute the following command.

```shell
Expand Down
2 changes: 1 addition & 1 deletion hive-server2-jdbc-driver-thin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</parent>

<artifactId>hive-server2-jdbc-driver-thin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hive-server2-jdbc-driver-uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</parent>

<artifactId>hive-server2-jdbc-driver-uber</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>

<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down