Skip to content

Commit

Permalink
Release version 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Nov 2, 2022
1 parent d497b07 commit 91618ab
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
## 1.5.3

### November 21, 2021

CHANGES:

* Upgrade SLF4J to version 2.0.3
* Upgrade Apache Commons Lang3 to version 3.12.0

IMPROVEMENTS:

* N/A

BUG FIXES:

* N/A

## 1.5.2

### November 21, 2021

CHANGES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This repository contains a standards-compliant JDBC driver for Polypheny-DB.
## 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: '1.5.2'` .
- Add `implementation group: 'org.polypheny', name: 'polypheny-jdbc-driver', version: '1.5.3'` .
- Load the driver `org.polypheny.jdbc.Driver`, for example via
```
Class.forName( "org.polypheny.jdbc.Driver" );
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ archivesBaseName = "polypheny-jdbc-driver"
description = "A standards-compliant JDBC driver for Polypheny-DB."

def versionMajor = 1
def versionMinor = 6
def versionQualifier = "-SNAPSHOT"
def versionMinor = 5.3
def versionQualifier = ""
version = versionMajor + "." + versionMinor + versionQualifier


Expand Down

0 comments on commit 91618ab

Please sign in to comment.