Skip to content

Commit

Permalink
Release version 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Dec 28, 2024
1 parent d52c3ec commit f2ea4ab
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 2.3

### December 28, 2024

CHANGES:

* Use PRISM API Version 2.3
* Add null check for closing result sets
* Improve exception messages
* Handle null in asTimestamp
* Support converting BigDecimal to Long
* Treat column names as case-insensitive
* Return an empty List if parameterBatch is empty
* Use default timezone if calendar is null

IMPROVEMENTS:

* N/A

BUG FIXES:

* N/A

## 2.2

### August 16, 2024
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This driver is compatible with JVM version 8 or higher.
## Getting Started

- The driver is published to Maven Central. Make sure that you have added `mavenCentral()` to the repositories section in your gradle build file.
- Add `implementation group: 'org.polypheny', name: 'polypheny-jdbc-driver', version: '2.2'` .
- Add `implementation group: 'org.polypheny', name: 'polypheny-jdbc-driver', version: '2.3'` .
- Optionally: load the driver `org.polypheny.jdbc.PolyphenyDriver`, for example via
```
Class.forName( "org.polypheny.jdbc.PolyphenyDriver" );
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = "A standards-compliant JDBC driver for Polypheny."

def versionMajor = 2
def versionMinor = 3
def versionQualifier = "SNAPSHOT"
def versionQualifier = ""
version = versionMajor + "." + versionMinor + (versionQualifier != '' ? "-" + versionQualifier : '')


Expand Down

0 comments on commit f2ea4ab

Please sign in to comment.