diff --git a/CHANGELOG.md b/CHANGELOG.md index 19d3087..ae41cc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.3.3 + +##### Fix +* [issue#36](https://github.com/cianru/huawei-publish-gradle-plugin/issues/36): + publishHuaweiAppGallery* task not created for all build types. + The plugin create publishing task for debuggable build too. +* [issue#38](https://github.com/cianru/huawei-publish-gradle-plugin/issues/38): + Publishing bug: "The package is being compiled, please try again". + Huawei changed the behavior of current api url for apk build copied it as for aab with waiting for review. + # 1.3.1 ##### Add diff --git a/README.md b/README.md index 5cdfe4d..0fa9cb2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Huawei App Gallery Publishing [![Maven Central](https://img.shields.io/maven-central/v/ru.cian/huawei-publish-gradle-plugin.svg)](https://search.maven.org/search?q=a:huawei-publish-gradle-plugin) -![Version](https://img.shields.io/badge/Version-1.3.1-green.svg) +![Version](https://img.shields.io/badge/Version-1.3.3-green.svg) ![Version](https://img.shields.io/badge/Gradle-7.0.*-pink.svg) [![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) @@ -306,7 +306,7 @@ or execute from command line: --buildFormat=aab ``` -After uploading *.aab file the Huawei Service will start processed. It may take 2-5 minutes, depending on the size of the software package. +After uploading build file the Huawei Service will start processed. It may take 2-5 minutes, depending on the size of the software package. While publishing the AppBundle build file you can get the error: >What went wrong: > Execution failed for task ':app:publishHuaweiAppGalleryRelease'. @@ -317,9 +317,9 @@ When publishing an AppBundle the service takes some time to parse the file. In this case, the plugin uses a special mechanism for the full cycle. By default, the plugin tries to publish the assembly every 15 seconds for 10 minutes. To change values see using parameters: `publishTimeoutMs` and `publishPeriodMs`. -You don't meet such problem for *.apk file which will publish immediately after uploading. For more information see the [Issue#7](https://github.com/cianru/huawei-publish-gradle-plugin/issues/7) +and [Issue#38](https://github.com/cianru/huawei-publish-gradle-plugin/issues/38). diff --git a/RELEASING.md b/RELEASING.md index 2f0b396..221755c 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -83,8 +83,8 @@ rm -rv ~/.m2/repository/ru/cian/huawei-publish-gradle-plugin/ ``` cd ./plugin ``` -1. Edit gradle.properties, remove '-SNAPSHOT' from the VERSION property -1. Edit readme so that Gradle examples point to the new version +1. Edit `gradle.properties`, remove '-SNAPSHOT' from the VERSION property +1. Edit `README.md` so that Gradle examples point to the new version 1. Edit changelog, add relevant changes, note the date and new version (follow the existing pattern) 1. Verify that the everything works: ```bash @@ -133,12 +133,12 @@ rm -rv ~/.m2/repository/ru/cian/huawei-publish-gradle-plugin/ ```bash ./gradlew publishPlugins ``` -1. Check uploaded files and version Gradle Plugin Portal site: https://plugins.gradle.org/ +1. Check uploaded plugin and version at [Gradle Plugin Portal site](https://plugins.gradle.org/plugin/ru.cian.huawei-publish-gradle-plugin). ######################################################################## ### Prepare Release Commit ######################################################################## -1. Edit gradle.properties, remove '-SNAPSHOT' from the VERSION property +1. Edit ./plugin/gradle.properties, remove '-SNAPSHOT' from the VERSION property 1. Make a *signed* commit: ```bash git commit -m "Release vX.Y.Z" diff --git a/plugin/gradle.properties b/plugin/gradle.properties index e8f83e4..5625ea4 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -8,7 +8,7 @@ android.enableJetifier=true #################################################################################################### GROUP=ru.cian -VERSION_NAME=1.3.3-SNAPSHOT +VERSION_NAME=1.3.3 POM_ARTIFACT_ID=huawei-publish-gradle-plugin POM_NAME=Huawei Publish Gradle Plugin