Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_

Expand Down
2 changes: 1 addition & 1 deletion librarian.root.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 10 additions & 8 deletions scripts/update-repo.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
},
)
Loading