Skip to content

Commit

Permalink
bump 2 5 3
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Jan 7, 2020
1 parent af1f4c5 commit c95f232
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,10 +1,18 @@
# Change Log

## [2.5.3](https://github.com/mariadb-corporation/mariadb-connector-j/tree/2.5.3) (07 Jan. 2020)
[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/2.5.2...2.5.3)

* CONJ-752 - Manifest file wrong entry - thanks to Christoph Läubrich
* CONJ-750 - protocol error when not setting database with maxscale
* CONJ-747 - JDBC Conversion Function fast-path skipped, always using longer implementation

## [2.5.2](https://github.com/mariadb-corporation/mariadb-connector-j/tree/2.5.2) (22 Nov. 2019)
[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/2.5.1...2.5.2)

* CONJ-745 - use pool reset only for corrected COM_RESET_CONNECTION
* CONJ-743 - byte signed value wrong serialization for text protocol
* CONJ-742 ensure plugin using Driver classloader
* CONJ-742 - ensure plugin using Driver classloader


## [2.5.1](https://github.com/mariadb-corporation/mariadb-connector-j/tree/2.5.1) (15 Oct. 2019)
Expand Down
9 changes: 3 additions & 6 deletions README.md
Expand Up @@ -19,19 +19,16 @@ Tracker link <a href="https://jira.mariadb.org/projects/CONJ/issues/">https://ji

## Obtaining the driver

| Java version | current version |
|:------------:|:-------------------------:|
| 6 | 1.7.4 |
| 7 | 1.7.4 |
| 8+ | 2.5.2 |
For java 8 or more :
(maintenance branch for java 7 is 1.x)

The driver (jar) can be downloaded from [mariadb connector download](https://mariadb.com/products/connectors-plugins)
or maven :
```script
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.5.1</version>
<version>2.5.3</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -59,7 +59,7 @@
<artifactId>mariadb-java-client</artifactId>
<packaging>jar</packaging>
<name>mariadb-java-client</name>
<version>2.5.3-SNAPSHOT</version>
<version>2.5.3</version>
<description>JDBC driver for MariaDB and MySQL</description>
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>

Expand All @@ -74,7 +74,7 @@
<driver.version.major>2</driver.version.major>
<driver.version.minor>5</driver.version.minor>
<driver.version.patch>3</driver.version.patch>
<driver.version.qualifier>-SNAPSHOT</driver.version.qualifier>
<driver.version.qualifier></driver.version.qualifier>
</properties>

<licenses>
Expand Down
Expand Up @@ -53,9 +53,9 @@
package org.mariadb.jdbc.internal.util.constant;

public final class Version {
public static final String version = "2.5.3-SNAPSHOT";
public static final String version = "2.5.3";
public static final int majorVersion = 2;
public static final int minorVersion = 5;
public static final int patchVersion = 3;
public static final String qualifier = "-SNAPSHOT";
public static final String qualifier = "";
}

0 comments on commit c95f232

Please sign in to comment.