Skip to content

Commit

Permalink
Preparing for 5.4.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
connelly38 authored Nov 17, 2023
1 parent 5bb72ac commit de0ff1d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Unreleased
## [5.4.14] 20230-11-17

## Added
- Added SDK version number in exception messages

## Changed
- Modified internal query processing to better support elasticity operations
- Update netty dependency to 4.1.101.Final


## [5.4.13] 2023-09-25
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ project. The version changes with each release.
<dependency>
<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.13</version>
<version>5.4.14</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.13-SNAPSHOT</version>
<version>5.4.14</version>
<packaging>jar</packaging>

<organization>
Expand All @@ -46,7 +46,7 @@
<copyright>Copyright (c) 2011, 2023 Oracle and/or its affiliates. All rights reserved.</copyright>
<java.apidoc>http://docs.oracle.com/javase/8/docs/api</java.apidoc>
<maven.deploy.skip>false</maven.deploy.skip>
<netty.version>4.1.94.Final</netty.version>
<netty.version>4.1.101.Final</netty.version>
<jackson.version>2.15.2</jackson.version>
<bouncy.version>1.76</bouncy.version>
<!-- by default, skip tests; tests require a profile -->
Expand Down
2 changes: 1 addition & 1 deletion driver/src/main/java/oracle/nosql/driver/SDKVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ public class SDKVersion {
/**
* The full X.Y.Z version of the current SDK
*/
public static final String VERSION = "5.4.13";
public static final String VERSION = "5.4.14";
}
4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.oracle.nosql.sdk</groupId>
<version>5.4.13</version>
<version>5.4.14</version>
<artifactId>nosql-java-sdk-examples</artifactId>
<name>Oracle NoSQL Database Java Examples</name>
<description>Java examples for Oracle NoSQL Database</description>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.13</version>
<version>5.4.14</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosql-java-sdk</artifactId>
<version>5.4.13-SNAPSHOT</version>
<version>5.4.14</version>
<packaging>pom</packaging>
<name>Oracle NoSQL SDK</name>
<description>
Expand Down

0 comments on commit de0ff1d

Please sign in to comment.