From 21de6207945dfca6b49809fa9dd08c3781b7ab9d Mon Sep 17 00:00:00 2001 From: Kalle Stenflo Date: Sun, 26 Mar 2023 13:58:15 +0200 Subject: [PATCH] Prepare next version --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3bc6c1a5..9e805982 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,7 @@ ext { ] ] - snapshotVersion = false + snapshotVersion = true } allprojects { @@ -53,7 +53,7 @@ allprojects { ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss') group = 'com.jayway.jsonpath' - version = '2.8.0' + (snapshotVersion ? "-SNAPSHOT" : "") + version = '2.9.0' + (snapshotVersion ? "-SNAPSHOT" : "") }