Skip to content

Commit

Permalink
v.0.14.1
Browse files Browse the repository at this point in the history
- bump libs
- bump version

#14
  • Loading branch information
pablo03v authored Mar 23, 2024
1 parent 49dd1e3 commit 97eac3e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "cloud.pablos.overload"
minSdk = 26
targetSdk = 34
versionCode = 140
versionName = "0.14.0"
versionCode = 141
versionName = "0.14.1"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 140,
"versionName": "0.14.0",
"versionCode": 141,
"versionName": "0.14.1",
"outputFile": "app-release.apk"
}
],
Expand Down
4 changes: 1 addition & 3 deletions app/src/main/java/cloud/pablos/overload/ui/views/YearView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import java.time.Month
import java.time.format.TextStyle
import java.util.Locale

@OptIn(ExperimentalStdlibApi::class)
@RequiresApi(Build.VERSION_CODES.S)
@Composable
fun YearView(
Expand Down Expand Up @@ -81,7 +80,7 @@ fun YearView(
if (isLastWeekInLastMonth) bottomPadding else 0.dp,
),
) {
WeekRow(firstDayOfMonth, weekOfMonth, state, onEvent, onNavigate)
WeekRow(firstDayOfMonth, weekOfMonth, onEvent, onNavigate)
}
}
}
Expand All @@ -106,7 +105,6 @@ fun MonthNameHeader(month: Month) {
fun WeekRow(
firstDayOfMonth: LocalDate,
weekOfMonth: Int,
state: ItemState,
onEvent: (ItemEvent) -> Unit,
onNavigate: () -> Unit,
) {
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/141.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- code optimisations
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
#####
[versions]
accompanist = "0.32.0"
androidGradlePlugin = "8.2.1"
androidGradlePlugin = "8.3.1"
androidx-activity-compose = "1.8.2"
androidx-appcompat = "1.6.1"
androidx-benchmark = "1.2.0"
androidx-benchmark-junit4 = "1.2.0"
androidx-compose-bom = "2023.10.01"
androidx-compose-bom = "2024.03.00"
androidx-constraintlayout = "1.0.1"
androidx-corektx = "1.12.0"
androidx-lifecycle-compose = "2.7.0"
androidx-lifecycle-runtime-compose = "2.7.0"
androidx-navigation = "2.7.6"
androidx-navigation = "2.7.7"
androidx-palette = "1.0.0"
androidx-test = "1.5.0"
androidx-test-espresso = "3.5.1"
Expand Down Expand Up @@ -45,7 +45,7 @@ ksp = "1.9.10-1.0.13"
maps-compose = "2.5.3"
material = "1.11.0"
# @keep
material3 = "1.2.0-beta02"
material3 = "1.2.1"
minSdk = "21"
okhttp = "4.11.0"
robolectric = "4.10.3"
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 @@
#Thu Aug 10 19:36:37 CEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 97eac3e

Please sign in to comment.