Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cosic committed Oct 17, 2024
1 parent 24566e4 commit 7cd7a95
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.4.3
# 1.5.0

##### Add
* [issue#58] Add new `publishSocketTimeoutInSeconds` parameter to change the socket timeout for publish requests in seconds.
Expand All @@ -14,7 +14,8 @@
}
}
```
* Remove support of `clientId` and `clientSecret` CLI params. Use `credentials` param instead.
* Change classpath dependency from `ru.cian:huawei-publish-gradle-plugin:<VERSION>` to `ru.cian.huawei-plugin:plugin:<VERSION>`.
* Remove support of `clientId` and `clientSecret` CLI params. Use `credentials` or `credentialsPath` params instead.

# 1.4.2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ buildscript {
}
dependencies {
classpath "ru.cian:huawei-publish-gradle-plugin:<PLUGIN_VERSION>"
classpath "ru.cian.huawei-plugin:plugin:<PLUGIN_VERSION>"
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin = "1.9.22"
detekt = "1.23.4"
junitJupiter = "5.9.3"
androidGradlePlugin = "8.6.0"
sampleHuaweiPlugin = "1.4.3-alpha02"
sampleHuaweiPlugin = "1.5.0"

[libraries]
appcompat = "androidx.appcompat:appcompat:1.6.1"
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Dec 27 15:37:46 CET 2020
#Mon Oct 07 08:14:46 WEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-all.zip
4 changes: 2 additions & 2 deletions plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android.enableJetifier=true

####################################################################################################

GROUP=ru.cian
VERSION_NAME=1.4.3-alpha02
GROUP=ru.cian.huawei-plugin
VERSION_NAME=1.5.0

REQUIRED_JDK_VERSION=17

Expand Down
2 changes: 1 addition & 1 deletion sample-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:" + libs.versions.kotlin.get()
classpath "ru.cian:plugin:" + libs.versions.sampleHuaweiPlugin.get()
classpath "ru.cian.huawei-plugin:plugin:" + libs.versions.sampleHuaweiPlugin.get()
}
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pluginManagement {
resolutionStrategy {
eachPlugin {
if(requested.id.namespace == "ru.cian") {
useModule("ru.cian:plugin:${samplePublishVersion}")
useModule("ru.cian.huawei-plugin:plugin:${samplePublishVersion}")
}
}
}
Expand Down

0 comments on commit 7cd7a95

Please sign in to comment.