From 0f608b611b35f971a195c8becdee44488c7cb919 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Mon, 4 Mar 2024 10:28:47 +0100 Subject: [PATCH] prepare v1.1.0 dev cycle --- build.gradle.kts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 70a18d6..98e7b63 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ import java.nio.file.StandardCopyOption buildscript { // needs to be defined in here because otherwise tutteli-publish plugin does not have this information when applied // and we want that it to apply the ch.tutteli conventions - rootProject.version = "1.0.0" + rootProject.version = "1.1.0-SNAPSHOT" rootProject.group = "ch.tutteli.kbox" rootProject.description = "A utility library for Kotlin " } @@ -142,11 +142,13 @@ Release & deploy a commit c) git tag vX.Y.Z d) git push origin vX.Y.Z 4. deploy to maven-central: - a) CI=true gr clean publishToSonatype - b) Log into https://oss.sonatype.org/#stagingRepositories - c) check if staging repo is ok - d) close repo - e) release repo + a) echo "enter the sonatype user token" + read SONATYPE_PW + b) java -version 2>&1 | grep "version \"11" && ORG_GRADLE_PROJECT_sonatypePassword="$SONATYPE_PW" PUB=true CI=true gr clean publishToSonatype + c) Log into https://oss.sonatype.org/#stagingRepositories + d) check if staging repo is ok + e) close repo + f) release repo 5. create release on github Prepare next dev cycle