v1.4.2
Add
- [issue#50] Added new parameter
removeHtmlTags
to remove html tags from Release Notes and support of the same Release Notes as for Google Play.
Fix
- Correct mustRunAfter publish task for
assemble*
andbundle*
tasks for Gradle 8 and JDK 17+
Breaking changes
Changed releaseNotes
configuration block. Instead of
releaseNotes = listOf(
ru.cian.rustore.publish.ReleaseNote(
lang = "en-US",
filePath = "$projectDir/release-notes-en.txt"
),
)
new configuration would
releaseNotes = ru.cian.huawei.publish.ReleaseNotesExtension(
descriptions = listOf(
ru.cian.huawei.publish.ReleaseNote(
lang = "en-US",
filePath = "$projectDir/release-notes-en.txt"
)
),
removeHtmlTags = false
)