Skip to content

Commit

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

### June 12, 2024

CHANGES:

* Improve handling of connection resets on Windows.

IMPROVEMENTS:

* N/A

BUG FIXES:

* When a DisconnectRequest is sent, the server sends a DisconnectResponse and closes the connection. On Windows it could happen that the closing of the connection is reported via exception before the DisconnectResponse has been processed.

## 2.0

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


Expand Down

0 comments on commit a4d1770

Please sign in to comment.