Skip to content

Commit

Permalink
tag 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Feb 19, 2018
1 parent 2226af3 commit 8edfd27
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ Tracker link <a href="https://jira.mariadb.org/projects/CONJ/issues/">https://ji

| Java version | current version |
|:------------:|:-------------------------:|
| 6 | 1.7.1 |
| 7 | 1.7.1 |
| 8 | 2.2.1 |
| 9 | 2.2.1 |
| 6 | 1.7.2 |
| 7 | 1.7.2 |
| 8 | 2.2.2 |
| 9 | 2.2.2 |

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.2.1</version>
<version>2.2.2</version>
</dependency>
```

Expand All @@ -51,7 +51,7 @@ Development snapshot are available on sonatype nexus repository
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.3.0-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down
13 changes: 13 additions & 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#222|2.2.2]] Released on 20 feb. 2018
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#221|2.2.1]] Released on 22 Dec. 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#220|2.2.0]] Released on 08 Nov. 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#212|2.1.2]] Released on 24 Sept. 2017
Expand Down Expand Up @@ -29,6 +30,18 @@
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#140|1.4.0]] Released on 31 march 2016
---
== 2.2.2

Bug correction:
[CONJ-564] Never ever throw an instance of java.lang.Error
[CONJ-579] Keywords missing from DatabaseMetaData.getSQLKeywords()
[CONJ-567] UrlParser.initialUrl gets overwritten
[CONJ-571] Permit java 9 serialization filtering
[CONJ-574] forcing using toLowerCase/toUpperCase with Locale.ROOT
[CONJ-560] Automatic module name for java 9
[CONJ-578] windows testing using all mariadb server
[CONJ-570] Add tests for 10.3.3 INVISIBLE column

== 2.2.1

[CONJ-501] provide support for authentication plugin ed25519
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<artifactId>mariadb-java-client</artifactId>
<packaging>jar</packaging>
<name>mariadb-java-client</name>
<version>2.2.2-SNAPSHOT</version>
<version>2.2.2</version>
<description>JDBC driver for MariaDB and MySQL</description>
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>

Expand All @@ -72,7 +72,7 @@
<driver.version.major>2</driver.version.major>
<driver.version.minor>2</driver.version.minor>
<driver.version.patch>2</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.2.2-SNAPSHOT";
public static final String version = "2.2.2";
public static final int majorVersion = 2;
public static final int minorVersion = 2;
public static final int patchVersion = 2;
public static final String qualifier = "-SNAPSHOT";
public static final String qualifier = "";
}

0 comments on commit 8edfd27

Please sign in to comment.