Skip to content

Commit

Permalink
Merge pull request #65 from batoulapps/bump_version
Browse files Browse the repository at this point in the history
Bump version to 0.0.5
  • Loading branch information
ahmedre authored Mar 3, 2024
2 parents 5b69260 + e5026c4 commit faf316c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## development

## version 0.0.5
- update Kotlin to 1.9.22
- new target: Linux arm64
- support Turkish Diyanet method
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ All primary development is for the Kotlin Multiplatform version. There is also a
### Gradle

```
implementation("com.batoulapps.adhan:adhan2:0.0.4")
implementation("com.batoulapps.adhan:adhan2:0.0.5")
```

**Note** - on Android, [kotlinx.datetime](https://github.com/Kotlin/kotlinx-datetime) uses `java.time`, which needs either a minimum api level of 26, or enabling of `coreLibraryDesugaring` as per the instructions [here](https://developer.android.com/studio/write/java8-support#library-desugaring).
Expand Down
8 changes: 8 additions & 0 deletions adhan/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ kotlin {
macosX64()

watchosX64()
watchosArm32()
watchosArm64()
watchosSimulatorArm64()

Expand Down Expand Up @@ -93,6 +94,13 @@ kotlin {
}
}

// Fix Gradle warning about signing tasks using publishing task outputs without explicit dependencies
// https://github.com/gradle/gradle/issues/26091
tasks.withType<AbstractPublishToMaven>().configureEach {
val signingTasks = tasks.withType<Sign>()
mustRunAfter(signingTasks)
}

// taken from here with minor modifications:
// https://dev.to/kotlin/how-to-build-and-publish-a-kotlin-multiplatform-library-going-public-4a8k
// planning on moving this to a plugin one day.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
version=0.0.4
version=0.0.5

0 comments on commit faf316c

Please sign in to comment.