Skip to content

Commit 3e8eda5

Browse files
andiemontoyeahandiem-bq
andauthored
[AD-471] Bump to version 1.0.1-beta.1 (#195)
* Bump to version 1.0.1-beta.1 * Commit Code Coverage Badge Co-authored-by: andiem-bq <[email protected]>
1 parent 52efe34 commit 3e8eda5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ plugins {
1111
}
1212

1313
group 'software.amazon.documentdb.jdbc'
14-
version "${project.MAJOR_VERSION}.${project.MINOR_VERSION}.${project.PATCH_VERSION}"
14+
version project.hasProperty("BETA_VERSION") ? "${project.MAJOR_VERSION}.${project.MINOR_VERSION}.${project.PATCH_VERSION}-beta.${project.BETA_VERSION}" : "${project.MAJOR_VERSION}.${project.MINOR_VERSION}.${project.PATCH_VERSION}"
1515
description 'documentdb-jdbc-driver'
16-
1716
tasks.register('patchJanino') {
1817
def janinoHash = "4b98b5b44ee329685503e264751067fab259f7b7";
1918
if (!file("${buildDir}/"<< janinoHash << ".zip").exists()) {

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ CONNECTION_STRING_LOCAL=jdbc:documentdb://username:password@localhost/database
33
CONNECTION_STRING_REMOTE=jdbc:documentdb://username:password@remotehost/database
44
MAJOR_VERSION=1
55
MINOR_VERSION=0
6-
PATCH_VERSION=0
6+
PATCH_VERSION=1
7+
# Comment out if not creating a beta version
8+
BETA_VERSION=1
79
# Uncomment out next line to disable remote integration tests
810
#runRemoteIntegrationTests=false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
driver.full.version=1.0.0
1+
driver.full.version=1.0.1-beta.1
22
driver.major.version=1
33
driver.minor.version=0

0 commit comments

Comments
 (0)