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

FMWK-609 Update dependencies and set version to 1.9.2 #78

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<name>aerospike-jdbc</name>
<description>A JDBC driver for the Aerospike database</description>
<url>https://github.com/aerospike/aerospike-jdbc</url>
<version>1.9.1</version>
<version>1.9.2</version>

<properties>
<skipTests>false</skipTests>
Expand All @@ -27,10 +27,10 @@
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>

<aerospike-client.version>8.1.4</aerospike-client.version>
<netty.version>4.1.113.Final</netty.version>
<jackson.version>2.17.2</jackson.version>
<calcite.version>1.37.0</calcite.version>
<guava.version>33.3.0-jre</guava.version>
<netty.version>4.1.114.Final</netty.version>
<jackson.version>2.18.1</jackson.version>
<calcite.version>1.38.0</calcite.version>
<guava.version>33.3.1-jre</guava.version>
<httpclient.version>4.5.14</httpclient.version>

<assertj.version>3.25.0</assertj.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/jdbc/util/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public final class Constants {
public static final String UNSUPPORTED_QUERY_TYPE_MESSAGE = "Unsupported query type";

// Driver version
public static final String DRIVER_VERSION = "1.9.1";
public static final String DRIVER_VERSION = "1.9.2";
public static final int DRIVER_MAJOR_VERSION = 1;
public static final int DRIVER_MINOR_VERSION = 9;

Expand Down
Loading