Skip to content

Commit

Permalink
bump 1.5.7 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Jan 12, 2017
1 parent 6ab687a commit f5dc9ea
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 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.6</version>
<version>1.5.7</version>
</dependency>
```

Expand Down
4 changes: 3 additions & 1 deletion documentation/changelog.creole
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Changelog
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#155|1.5.7]] not released
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#155|1.5.7]] Released on 12 Jan. 2016
* [[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
Expand All @@ -18,6 +18,8 @@
---
== 1.5.7
* CONJ-407 : handling failover when packet > max_allowed_packet reset the connection state.
* CONJ-403 : possible NPE on ResultSet.close() correction
* CONJ-405 : Calendar instance not cleared before being used in ResultSet.getTimestamp
== 1.5.6
* CONJ-399 : resultSet getLong() for BIGINT column fails if value is Long.MIN_VALUE in Text protocol
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.7-SNAPSHOT</version>
<version>1.5.7</version>
<description>JDBC driver for MariaDB and MySQL</description>
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>

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.7-SNAPSHOT";
public static final String version = "1.5.7";
public static final int majorVersion = 1;
public static final int minorVersion = 5;
public static final int patchVersion = 7;
public static final String qualifier = "SNAPSHOT";
public static final String qualifier = "";

}
2 changes: 1 addition & 1 deletion src/test/java/org/mariadb/jdbc/TruncateExceptionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void truncationThrowError() throws SQLException {
queryTruncation(true);
fail("Must have thrown SQLException");
} catch (SQLException e) {
e.printStackTrace();
//normal error
}
}

Expand Down

0 comments on commit f5dc9ea

Please sign in to comment.