Skip to content

Commit

Permalink
release version 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Dec 21, 2016
1 parent 036108e commit 680f0b4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>1.5.5</version>
<version>1.5.6</version>
</dependency>
```

Expand Down
1 change: 1 addition & 0 deletions documentation/changelog.creole
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
= Changelog
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#155|1.5.6]] Released on 21 Dec. 2016
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#155|1.5.5]] Released on 07 Nov. 2016
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#154|1.5.4]] Released on 10 Oct. 2016
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#153|1.5.3]] Released on 03 Oct. 2016
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>mariadb-java-client</artifactId>
<packaging>jar</packaging>
<name>mariadb-java-client</name>
<version>1.5.6-SNAPSHOT</version>
<version>1.5.6</version>
<description>JDBC driver for MariaDB and MySQL</description>
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mariadb/jdbc/MariaDbStatement.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ protected void executeQueryEpilog(QueryException queryException) throws SQLExcep

if (isTimedout) {
isTimedout = false;
queryException = new QueryException("(conn:" + getServerThreadId() + ") Query timed out", 1317, "JZ0002", queryException);
queryException = new QueryException("Query timed out", 1317, "JZ0002", queryException);
}

if (queryException == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWIS
package org.mariadb.jdbc.internal.util.constant;

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

}

0 comments on commit 680f0b4

Please sign in to comment.