Skip to content

Commit

Permalink
Update driver version numbers to reflect new minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
cvitter committed Aug 29, 2016
1 parent 5417cfc commit d4d3488
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion riakts.jdbc.driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.basho</groupId>
<artifactId>riakts.jdbc.driver</artifactId>
<packaging>jar</packaging>
<version>0.5</version>
<version>0.6</version>
<name>Riak TS JDBC Driver</name>
<description>JDBC Driver for Riak TS</description>
<url>https://github.com/basho-labs/Riak-TS-JDBC-Driver</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData {

// These variables need to be updated with each new release
private final static String DRIVER_NAME = "Riak TS JDBC Driver";
private final static String DRIVER_VERSION = "0.5";
private final static String DRIVER_VERSION = "0.6";
private final static int DRIVER_MAJOR_VERSION = 0;
private final static int DRIVER_MINOR_VERSION = 5;
private final static int DRIVER_MINOR_VERSION = 6;

// Riak TS Product Variables
// Note: Update version a new version is released and
// tested with the driver
private final static String DATABASE_PRODUCT_NAME = "Riak TS";
private final static String DATABASE_PRODUCT_VERSION = "1.3.1";
private final static String DATABASE_PRODUCT_VERSION = "1.4";

// JDBC Driver specific variables that won't update a lot
private final static boolean IS_READ_ONLY = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Driver implements java.sql.Driver {

// Variables need to be updated on a per release basis
private final static int MAJOR_VERSION = 0;
private final static int MINOR_VERSION = 5;
private final static int MINOR_VERSION = 6;
private final static boolean JDBC_COMPLIANT = false;

/***
Expand Down

0 comments on commit d4d3488

Please sign in to comment.