diff --git a/LICENSE b/LICENSE index 0665a7cee1..cf608236de 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright(c) 2018 Microsoft Corporation +Copyright(c) 2019 Microsoft Corporation All rights reserved. MIT License diff --git a/build.gradle b/build.gradle index d7cf97c95c..1d3534cc55 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'java' -version = '7.1.4' +version = '7.2.0-SNAPSHOT' def jreVersion = "" def testOutputDir = file("build/classes/java/test") def archivesBaseName = 'mssql-jdbc' @@ -27,7 +27,7 @@ allprojects { if (!hasProperty('buildProfile') || (hasProperty('buildProfile') && buildProfile == "build43")){ - jreVersion = "jre11-preview" + jreVersion = "jre11" excludedFile = 'com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java' jar { manifest { @@ -40,7 +40,7 @@ if (!hasProperty('buildProfile') || (hasProperty('buildProfile') && buildProfile if((hasProperty('buildProfile') && buildProfile == "build42")) { - jreVersion = "jre8-preview" + jreVersion = "jre8" excludedFile = 'com/microsoft/sqlserver/jdbc/SQLServerJdbc43.java' sourceCompatibility = 1.8 diff --git a/pom.xml b/pom.xml index 279417c642..48e3ecb6c3 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microsoft.sqlserver mssql-jdbc - 7.1.4 + 7.2.0-SNAPSHOT jar Microsoft JDBC Driver for SQL Server @@ -164,7 +164,7 @@ build42 - ${project.artifactId}-${project.version}.jre8-preview + ${project.artifactId}-${project.version}.jre8 org.apache.maven.plugins @@ -231,7 +231,7 @@ true - ${project.artifactId}-${project.version}.jre11-preview + ${project.artifactId}-${project.version}.jre11 org.apache.maven.plugins diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java index 49eed7bdfd..9036500abc 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -7,7 +7,7 @@ final class SQLJdbcVersion { static final int major = 7; - static final int minor = 1; - static final int patch = 4; + static final int minor = 2; + static final int patch = 0; static final int build = 0; }