Skip to content

Commit

Permalink
version 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Apr 29, 2016
1 parent 12f3a10 commit da49b68
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>1.4.3</version>
<version>1.4.4</version>
</dependency>
```

Expand Down
3 changes: 2 additions & 1 deletion documentation/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

---
## 1.4.4
Unreleased
Released on 29 april 2016
* [CONJ-289] PrepareStatement on master reconnection after a failover
* [CONJ-288] using SHOW VARIABLES to replace SELECT on connection to permit connection on a galera non primary node

## 1.4.3
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.4.4-SNAPSHOT</version>
<version>1.4.4</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 @@ -85,6 +85,7 @@ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWIS
import java.util.concurrent.locks.ReentrantLock;
import java.util.regex.Pattern;

@SuppressWarnings("deprecation")
public class MariaSelectResultSet implements ResultSet {
public static final MariaSelectResultSet EMPTY = createEmptyResultSet();

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

}
1 change: 1 addition & 0 deletions src/test/java/org/mariadb/jdbc/DatatypeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,7 @@ private void testBitResult(ResultSet rs) throws SQLException {
}

@Test
@SuppressWarnings("deprecation")
public void testNullTimePreparedStatement() throws Exception {
sharedConnection.createStatement().execute("insert into time_period(id, start, end) values(1, '00:00:00', '08:00:00');");
final String sql = "SELECT id, start, end FROM time_period WHERE id=?";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

@SuppressWarnings("deprecation")
public class TimezoneDaylightSavingTimeTest extends BaseTest {

private static Locale previousFormatLocale;
Expand Down

0 comments on commit da49b68

Please sign in to comment.