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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle 8.6
- name: Setup Gradle 8.7
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: '8.6'
gradle-version: '8.7'
cache-read-only: false

- name: Write local.properties
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
java-version: "17"
distribution: temurin

- name: Setup Gradle 8.6
- name: Setup Gradle 8.7
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: "8.6"
gradle-version: "8.7"
cache-read-only: false

- name: Write local.properties
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Rules:

---

## [0.22.1-beta.1] - 2026-06-02

### Changed
- Compose BOM upgraded from `2024.12.01` to `2025.05.01` (Compose UI 1.8.x, Material3 1.4.x). No user-visible changes; enables use of stable Compose 1.8 APIs internally.

## [0.22.0-beta.1] - 2026-06-02

### Added
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ plugins {

android {
namespace = "com.mapgie.goflo"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.mapgie.goflo"
minSdk = 26
targetSdk = 34
versionCode = 57
versionName = "0.22.0-beta.1"
versionCode = 58
versionName = "0.22.1-beta.1"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.mapgie.goflo.ui.screens.licenses

// MAINTAINER NOTE: keep this list in sync with gradle/libs.versions.toml.
// Add an entry here whenever a new RUNTIME dependency is added to the project.
// Compose library versions are pinned via the Compose BOM (currently 2025.05.01).
//
// Excluded — not shipped in the release APK:
// junit (testImplementation only)
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
agp = "8.4.0"
agp = "8.6.0"
kotlin = "2.0.0"
ksp = "2.0.0-1.0.21"
coreKtx = "1.13.1"
lifecycleRuntime = "2.8.1"
activityCompose = "1.9.0"
composeBom = "2024.12.01"
composeBom = "2025.05.01"
navigationCompose = "2.7.7"
room = "2.6.1"
datastorePreferences = "1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading