Skip to content

Commit

Permalink
Update version to remove -preview (#2061)
Browse files Browse the repository at this point in the history
* Update versions to remove -preview suffix.
  • Loading branch information
Jeffery-Wasty committed Jan 31, 2023
1 parent 6ab5586 commit 4a27a0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -85,7 +85,7 @@ if(hasProperty('buildProfile') && buildProfile == "jre8") {
}
}

jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}-preview.jar"
jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}.jar"
jar {
manifest {
attributes 'Title': "Microsoft JDBC Driver ${archiveVersion} for SQL Server",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -59,7 +59,7 @@
<excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth</excludedGroups>

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

<!-- Driver Dependencies -->
<org.osgi.core.version>6.0.0</org.osgi.core.version>
Expand Down
Expand Up @@ -15,7 +15,7 @@ final class SQLJdbcVersion {
* 1. Set to "-preview" for preview release.
* 2. Set to "" (empty String) for official release.
*/
static final String RELEASE_EXT = "-preview";
static final String RELEASE_EXT = "";

private SQLJdbcVersion() {
throw new UnsupportedOperationException(SQLServerException.getErrString("R_notSupported"));
Expand Down

0 comments on commit 4a27a0d

Please sign in to comment.