Skip to content

Commit

Permalink
bump 2.5.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Oct 15, 2019
1 parent 21d9493 commit cae12e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Tracker link <a href="https://jira.mariadb.org/projects/CONJ/issues/">https://ji
|:------------:|:-------------------------:|
| 6 | 1.7.4 |
| 7 | 1.7.4 |
| 8+ | 2.5.0 |
| 8+ | 2.5.1 |

The driver (jar) can be downloaded from [mariadb connector download](https://mariadb.com/products/connectors-plugins)
or maven :
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<artifactId>mariadb-java-client</artifactId>
<packaging>jar</packaging>
<name>mariadb-java-client</name>
<version>2.5.1-SNAPSHOT</version>
<version>2.5.1</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>1</driver.version.patch>
<driver.version.qualifier>-SNAPSHOT</driver.version.qualifier>
<driver.version.qualifier></driver.version.qualifier>
</properties>

<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
package org.mariadb.jdbc.internal.util.constant;

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

0 comments on commit cae12e7

Please sign in to comment.