From f35e0eaa9f588f7283c68016d457402320af4647 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 15 Nov 2025 17:48:55 +0100 Subject: [PATCH 1/4] - [release] v5.5.0 --- README.md | 3 +-- build.gradle | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6a5ded4a..cf357ee0 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,7 @@ ## Latest releases 🛠 -- Kotlin | [v5.4.0](https://github.com/mikepenz/Android-Iconics/tree/v5.4.0) -- Pre-Release | [v5.5.0-b01](https://github.com/mikepenz/Android-Iconics/tree/v5.5.0-b01) +- Kotlin | [v5.5.0](https://github.com/mikepenz/Android-Iconics/tree/v5.5.0) ## 1. Provide the gradle dependency ```gradle diff --git a/build.gradle b/build.gradle index e225fdb4..bb2f1226 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ buildscript { ext { release = [ - versionName: "5.5.0-rc01", + versionName: "5.5.0", versionCode: 50500 ] From ea861bb55ebeb73786725fa8e79a9e09861e13c9 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 15 Nov 2025 18:14:48 +0100 Subject: [PATCH 2/4] don't wait for validation --- gradle-release.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle-release.gradle b/gradle-release.gradle index 7cc01cad..5d19ed7d 100644 --- a/gradle-release.gradle +++ b/gradle-release.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.vanniktech.maven.publish' // Configure the maven publish plugin mavenPublishing { // Use the new Maven Central Portal (https://central.sonatype.com/) - publishToMavenCentral(true) + publishToMavenCentral(true, false) // Enable GPG signing for all publications signAllPublications() From e5be00b7ee89356ae74d5a16aabffd49ab9c35da Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 15 Nov 2025 18:15:18 +0100 Subject: [PATCH 3/4] skip iconics-core --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9df537b9..89648049 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: | ./gradlew build -x test -x lint - ./gradlew :iconics-core:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel + # ./gradlew :iconics-core:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-typeface-api:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-views:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-compose:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel From 0cc655e6da76dbdd9821a0252389b92932cd1fcd Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 15 Nov 2025 18:16:35 +0100 Subject: [PATCH 4/4] enable `iconics-core` publishing again --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89648049..9df537b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: | ./gradlew build -x test -x lint - # ./gradlew :iconics-core:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel + ./gradlew :iconics-core:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-typeface-api:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-views:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel ./gradlew :iconics-compose:publishToMavenCentral -x test -x lint --no-configure-on-demand --no-parallel