diff --git a/CHANGELOG.md b/CHANGELOG.md index 341cf75..9ce7032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.4.1 +_2026-03-30_ + +Couple of bugfixes: + +* [FIX] Fix checking dependencies on Android projects (https://github.com/GradleUp/tapmoc/pull/83) + * Android projects expose several variants, and we need to set the variant and artifact type attributes to avoid disambiguation errors when resolving the runtime/api dependencies. +* [FIX] Fix the kotlin-stdlib exposed by `tapmoc-gradle-plugin` ([faf78a25](https://github.com/GradleUp/tapmoc/commit/faf78a255ccac5c09c671613b60c0d9d8173c904), [a0489f6b](https://github.com/GradleUp/tapmoc/commit/a0489f6ba6d6e6013d4d9f227f80ee685a86d05f), ...) + * 0.4.0 added new compilations that pulled `kotlin-stdlib:2.3.0` automatically. 0.4.1 now explicitely add the appropriate version of `kotlin-stdlib` to all compilations. + # 0.4.0 _2025-12-29_ diff --git a/librarian.root.properties b/librarian.root.properties index c8a0bba..7c0c980 100644 --- a/librarian.root.properties +++ b/librarian.root.properties @@ -4,7 +4,7 @@ kotlin.compatibility=2.0.21 kdoc.olderVersions= pom.groupId=com.gradleup.tapmoc -pom.version=0.4.1-SNAPSHOT +pom.version=0.4.2-SNAPSHOT pom.description=tapmoc pom.vcsUrl=https://github.com/GradleUp/tapmoc pom.developer=tapmoc authors diff --git a/scripts/update-repo.main.kts b/scripts/update-repo.main.kts index 6c245b5..b3b0844 100755 --- a/scripts/update-repo.main.kts +++ b/scripts/update-repo.main.kts @@ -3,14 +3,16 @@ @file:Repository("https://repo.maven.apache.org/maven2/") @file:Repository("https://dl.google.com/android/maven2/") @file:Repository("https://storage.googleapis.com/gradleup/m2") -@file:Repository("https://jitpack.io") //@file:Repository("file://~/.m2/repository") -@file:DependsOn("com.gradleup.librarian:librarian-cli:0.2.2-SNAPSHOT-0cbca80f60a15a0f851a9cd468bfc352db316dd4") +@file:DependsOn("com.gradleup.librarian:librarian-cli:0.2.2-SNAPSHOT-b89fe292839b757bf152e8369a88991052d32d0b") -import com.gradleup.librarian.cli.updateRepo +import com.gradleup.librarian.repo.updateRepo -updateRepo(args) { - file("README.md") { - replacePluginVersion("com.gradleup.tapmoc") - } -} + +updateRepo( + setVersionInDocs = { + file("README.md") { + replacePluginVersion("com.gradleup.tapmoc") + } + }, +)