diff --git a/CHANGELOG.md b/CHANGELOG.md
index c7acc45..b6e2406 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 1.0.1
+
+* Update dependencies: kotlin-1.3.72, gradle-6.6
+* Added `publish` param to separate uploading and publishing a build file
+
# 1.0.0
* Support different Plugin settings for different buildTypes and flavors
@@ -6,4 +11,5 @@
# 0.1.0
First released version. Support:
-* Publish APK in Huawei AppGallery and submit it on all users after getting store approve
\ No newline at end of file
+* Publish APK in Huawei AppGallery and submit it on all users after getting store approve
+
diff --git a/README.md b/README.md
index 5a37f97..40602b6 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
# 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.0.0-green.svg)
-![Version](https://img.shields.io/badge/Version-1.1.0_snapshot-yellow.svg)
+![Version](https://img.shields.io/badge/Version-1.0.1-green.svg)
+![Version](https://img.shields.io/badge/Version-1.0.1_snapshot-yellow.svg)
[![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
The plugin allows you to publish the Release APK file to the Huawei AppGallery.
@@ -14,7 +14,7 @@ Support `Gradle v4.1+`
# Versions
```
-LAST_RELEASE_VERSION = 1.0.0
+LAST_RELEASE_VERSION = 1.0.1
```
```
LAST_SNAPSHOT_VERSION = 1.0.1-SNAPSHOT
@@ -69,10 +69,10 @@ Credentials you should get at Huawei AppGallery Developer Console.
#### Params
-| param | priority | type | description |
-|-----------------|----------|---------|--------------------------------------------------------------------------------------------------------|
-| credentialsPath | required | string | File path with AppGallery credentials params (client_id and client_key) |
-| publish | optional | boolean | true - upload build file and publish it on all users,
false - upload build file without publishing |
+| param | priority | type | default value | description |
+|-----------------|----------|---------|---------------|--------------------------------------------------------------------------------------------------------|
+| credentialsPath | required | string | null | File path with AppGallery credentials params (client_id and client_key) |
+| publish | optional | boolean | false | true - upload build file and publish it on all users,
false - upload build file without publishing |
#### For Release Plugin version
```
diff --git a/gradle.properties b/gradle.properties
index 93a4261..2b1e42c 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -8,7 +8,7 @@ android.enableJetifier=true
####################################################################################################
GROUP=ru.cian
-VERSION_NAME=1.0.1-SNAPSHOT
+VERSION_NAME=1.0.1
POM_ARTIFACT_ID=huawei-publish-gradle-plugin
POM_NAME=Huawei Publish Gradle Plugin