diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ea8ffa..f65c75f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,19 @@ # 0.5.1 ##### Add -* [issue#15](https://github.com/cianru/rustore-publish-gradle-plugin/issues/15) Support of `publishType` param. -```groovy +* [issue#15](https://github.com/cianru/rustore-publish-gradle-plugin/issues/15) Support of `publishType` param to control the publish process. +```kotlin /** * (Optional) * CLI: `--publishType` * ----| 'instantly' – the application will be published immediately after the review process is completed. * ----| 'manual' – the application must be published manually by the developer after ther review process is completed. - * Gradle Extenion DSL, available values: + * Gradle Extension DSL, available values: * ----| ru.cian.rustore.publish.PublishType.INSTANTLY * ----| ru.cian.rustore.publish.PublishType.MANUAL * Default value: `instantly` - */ - publishType = ru.cian.rustore.publish.PublishType.INSTANTLY + */ + publishType = ru.cian.rustore.publish.PublishType.INSTANTLY ``` # 0.5.0 diff --git a/README.md b/README.md index 251f4f7..c0aef89 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ rustorePublish { * CLI: `--buildFormat`, available values: * ----| 'apk' * ----| 'aab' - * Gradle Extention DSL, available values: + * Gradle Extension DSL, available values: * ----| ru.cian.rustore.publish.BuildFormat.APK * ----| ru.cian.rustore.publish.BuildFormat.AAB * Default value: `apk` @@ -182,7 +182,7 @@ rustorePublish { * CLI: `--buildFormat`, available values: * ----| 'apk' * ----| 'aab' - * Gradle Extention DSL, available values: + * Gradle Extension DSL, available values: * ----| ru.cian.rustore.publish.BuildFormat.APK * ----| ru.cian.rustore.publish.BuildFormat.AAB * Default value: `apk` @@ -203,7 +203,7 @@ rustorePublish { * The time in seconds to wait for the publication to complete. Increase it if you build is large. * Type: Long (Optional) * Default value: `300` // (5min) - * CLI: `--publishTimeoutMs` + * CLI: `--requestTimeout` */ requestTimeout = 300 @@ -227,7 +227,7 @@ rustorePublish { * CLI: `--publishType` * ----| 'instantly' – the application will be published immediately after the review process is completed. * ----| 'manual' – the application must be published manually by the developer after ther review process is completed. - * Gradle Extenion DSL, available values: + * Gradle Extension DSL, available values: * ----| ru.cian.rustore.publish.PublishType.INSTANTLY * ----| ru.cian.rustore.publish.PublishType.MANUAL * Default value: `instantly` @@ -282,7 +282,7 @@ rustorePublish { credentialsPath = "$rootDir/rustore-credentials-release.json" buildFormat = "apk" buildFile = "$rootDir/app/build/outputs/apk/release/app-release.apk" - requestTimeout = 60 + requestTimeout = 60 // 1min mobileServicesType = "Unknown" releaseNotes = [ new ru.cian.rustore.publish.ReleaseNote( @@ -346,6 +346,7 @@ CLI params are more priority than gradle configuration params. --credentialsPath="/sample-kotlin/rustore-credentials.json" \ --buildFormat=apk \ --buildFile="/sample-kotlin/app/build/outputs/apk/release/app-release.apk" \ + --requestTimeout=300 \ # 5min --mobileServicesType="Unknown" \ --releaseNotes="ru_RU:/home//str/project/release_notes_ru.txt" ``` diff --git a/plugin/gradle.properties b/plugin/gradle.properties index ad6785a..e52b9c2 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -9,7 +9,7 @@ android.enableJetifier=true #################################################################################################### GROUP_ID=ru.cian.rustore-plugin -VERSION_NAME=0.5.1-alpha02 +VERSION_NAME=0.5.1 POM_ARTIFACT_ID=rustore-publish-gradle-plugin POM_NAME=Rustore Publish Gradle Plugin