Skip to content

Commit

Permalink
Release | Update version to 9.1.0 Snapshot (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulvii committed Aug 28, 2020
1 parent d1876fe commit 059ab70
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

apply plugin: 'java'

version = '8.4.1'
version = '9.1.0-SNAPSHOT'
def jreVersion = ""
def testOutputDir = file("build/classes/java/test")
def archivesBaseName = 'mssql-jdbc'
Expand Down Expand Up @@ -75,7 +75,7 @@ if(hasProperty('buildProfile') && buildProfile == "jre8") {
}
}

jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}.jar"
jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}-preview.jar"
jar {
manifest {
attributes 'Title': "Microsoft JDBC Driver ${version} for SQL Server",
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>8.4.1</version>
<version>9.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Microsoft JDBC Driver for SQL Server</name>
Expand Down Expand Up @@ -57,7 +57,7 @@
<excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth</excludedGroups>

<!-- Use -preview for preview release, leave empty for official release.-->
<releaseExt></releaseExt>
<releaseExt>-preview</releaseExt>

<!-- Driver Dependencies -->
<azure.keyvault.version>1.2.4</azure.keyvault.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
package com.microsoft.sqlserver.jdbc;

final class SQLJdbcVersion {
static final int major = 8;
static final int minor = 4;
static final int patch = 1;
static final int major = 9;
static final int minor = 1;
static final int patch = 0;
static final int build = 0;
/*
* Used to load mssql-jdbc_auth DLL.
* 1. Set to "-preview" for preview release.
* 2. Set to "" (empty String) for official release.
*/
static final String releaseExt = "";
static final String releaseExt = "-preview";
}

0 comments on commit 059ab70

Please sign in to comment.