Skip to content

Commit 77dcdea

Browse files
committed
Prepping v2.2.1
1 parent 3d07d83 commit 77dcdea

5 files changed

Lines changed: 19 additions & 6 deletions

File tree

.github/workflows/publish-to-maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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 }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repositories {
3434
}
3535

3636
dependencies {
37-
implementation("com.ivanempire:lighthouse:2.1.1")
37+
implementation("com.ivanempire:lighthouse:2.2.1")
3838
}
3939
```
4040

demo/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

gradle.properties

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ kotlin.code.style=official
1010
systemProp.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
1514
targetSdk=36
1615
compileSdk=36
1716

1817
# POM coordinates
19-
POM_VERSION=2.1.1
18+
POM_VERSION=2.2.1
2019
POM_GROUP_ID=com.ivanempire
2120
POM_ARTIFACT_ID=lighthouse
2221

0 commit comments

Comments
 (0)