Skip to content

v1.4.2

Latest
Compare
Choose a tag to compare
@cosic cosic released this 18 Dec 21:38
· 12 commits to master since this release

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* and bundle* 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
    )