Release 1.1.1: bump library versions and modernize release workflow - #131
Merged
Conversation
- lib.version.* -> 1.1.1 for compose, compose-ui, compose-test, compose-semantics - publish-release-workflow: actions/checkout@v4, actions/setup-java@v4 (Temurin 17) with Gradle cache
Android Studio regenerated these on sync after the toolchain upgrade.
publish-release-all.yml is triggered via workflow_dispatch and fans the shared release workflow out to compose, compose-semantics, compose-test and compose-ui as parallel matrix jobs with fail-fast disabled. Also drop the unused little-core-labs/get-git-tag step from the shared workflow: nothing reads its output and it runs on the retired Node 12 runtime.
Vacxe
enabled auto-merge
September 3, 2026 09:22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
compose,compose-ui,compose-testandcompose-semanticsingradle.properties. This is the first release after the toolchain upgrade merged in bump versions #130 (Gradle 9.7.1, AGP 9.4.0, Kotlin 2.4.10, Compose 1.12.0).publish-release-workflow.yamlmoves fromactions/checkout@v1andactions/setup-java@v1to the@v4versions with an explicit Temurin 17 distribution and Gradle caching, matching what the snapshot workflow already uses. The unusedlittle-core-labs/get-git-tagstep (Node 12, output never read) is removed.publish-release-all.yml). Triggered from the Actions tab viaworkflow_dispatch, it fans the shared release workflow out to all four libraries as parallel matrix jobs withfail-fast: false, so one failure does not cancel the others. The existing per-library tag triggers are unchanged.Why
@v1actions run on the retired Node 12 runtime and fetch JDKs from an old Zulu CDN listing, so the first tag-triggered release would most likely have failed at setup.Reviewer notes
minSdkfrom 21 to 23 and the JVM target from 8 to 11. Those changes landed in bump versions #130; this PR only assigns the version. Consider a changelog note about the new minimum API level.master, sinceworkflow_dispatchentries are read from the default branch. Run it frommasterafter merging.🤖 Generated with Claude Code