Skip to content

Commit

Permalink
bump 2.0.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Jun 5, 2017
1 parent c8c1c54 commit fa3f4a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions documentation/changelog.creole
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Changelog
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#202|2.0.2]] Not released
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#161|1.6.1]] Not released
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#202|2.0.2]] Released on 05 Jun. 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#161|1.6.1]] Released on 05 Jun. 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#201|2.0.1]] Released on 10 May 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#160|1.6.0]] Released on 10 May 2017
* [[https://github.com/MariaDB/mariadb-connector-j/documentation/changelog.creole#200|2.0.0]] Released on 11 Apr. 2017
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.0.2-SNAPSHOT</version>
<version>2.0.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>0</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.0.2-SNAPSHOT";
public static final String version = "2.0.2";
public static final int majorVersion = 2;
public static final int minorVersion = 0;
public static final int patchVersion = 2;
public static final String qualifier = "-SNAPSHOT";
public static final String qualifier = "";
}

0 comments on commit fa3f4a5

Please sign in to comment.