File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 - name : Setup Gradle
2020 uses : gradle/actions/setup-gradle@v5
2121 - name : Build release version of library module + publish
22- run : ./gradlew :library :build :library :publishToMavenCentral
22+ run : ./gradlew :lighthouse :build :lighthouse :publishToMavenCentral
2323 env :
2424 ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
2525 ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
Original file line number Diff line number Diff line change 11# Changelog
2+ ## [ 2.2.1] - March 11th 2026
3+ - Removing ` flatMapLatest ` in favor of simpler ` map ` method call for ` createNewDeviceFlow() `
4+ - Adjusting mutability on ` MediaDevice ` ` extraHeaders ` in favor of ` emptyMap() `
5+ - Bumped target SDK to 36
6+ - Bumped ` ktfmt ` to 0.25.0
7+ - Bumped ` mockito-core ` to 5.22.0
8+ - Bumped AndroidX Runtime to 2.10.0
9+ - Bumped Compose to 1.12.4
10+ - Bumped AndroidX Core to 1.17.0
11+ - Bumped Kotlin Coroutines to 1.10.2
12+ - Bumped Compose BOM to 2026.02.01
13+ - Upgraded Gradle wrapper to 9.4.0
14+ - Upgraded Gradle to 9.0.1
15+ - Removed ` buildSrc ` logic since the AGP upgrade was frustrating enough. Planning on putting this back in.
216
317## [ 2.1.1] - January 2nd 2024
418- Bumped AGP version to 8.2.0
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ repositories {
3434}
3535
3636dependencies {
37- implementation(" com.ivanempire:lighthouse:2.1 .1" )
37+ implementation(" com.ivanempire:lighthouse:2.2 .1" )
3838}
3939```
4040
Original file line number Diff line number Diff line change @@ -54,5 +54,5 @@ dependencies {
5454 implementation(project(" :lighthouse" ))
5555
5656 // Always points to latest release
57- // implementation("com.ivanempire:lighthouse:2.1 .1")
57+ // implementation("com.ivanempire:lighthouse:2.2 .1")
5858}
Original file line number Diff line number Diff line change @@ -10,13 +10,12 @@ kotlin.code.style=official
1010systemProp.org.gradle.internal.launcher.welcomeMessageEnabled =false
1111
1212# Project setup
13- # TODO: Drop back to 21 later, it's pulling in navigationevent
14- minSdk =23
13+ minSdk =21
1514targetSdk =36
1615compileSdk =36
1716
1817# POM coordinates
19- POM_VERSION =2.1 .1
18+ POM_VERSION =2.2 .1
2019POM_GROUP_ID =com.ivanempire
2120POM_ARTIFACT_ID =lighthouse
2221
You can’t perform that action at this time.
0 commit comments