Skip to content

Commit

Permalink
Release version 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Aug 16, 2024
1 parent 5042992 commit 125edb5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 2.2

### August 16, 2024

CHANGES:

* Improved toString method to align with the standard-compliant asString implementation.
* Updated fromDate method to accept null as input when using a custom calendar, representing a missing value.

IMPROVEMENTS:

* N/A

BUG FIXES:

* N/A

## 2.1

### June 12, 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.1'` .
- Add `implementation group: 'org.polypheny', name: 'polypheny-jdbc-driver', version: '2.2'` .
- 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 = 2
def versionQualifier = "SNAPSHOT"
def versionQualifier = ""
version = versionMajor + "." + versionMinor + (versionQualifier != '' ? "-" + versionQualifier : '')


Expand Down

0 comments on commit 125edb5

Please sign in to comment.