Skip to content

Commit

Permalink
[1.11.0.1-rc] Version 1.11.0.1 (#2252)
Browse files Browse the repository at this point in the history
  • Loading branch information
taridepaco authored Dec 3, 2024
2 parents 12b94de + a127aed commit b3e4bda
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pipeline {
expression { env.CHANGE_ID == null }
anyOf {
expression { env.GIT_BRANCH == "develop" }
expression { env.GIT_BRANCH ==~ /[0-9]+\.[0-9]+\.[0-9]+-rc/ }
expression { env.GIT_BRANCH ==~ /[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?-rc/ }
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ internal class PingService(
private val dhisVersionManager: DHISVersionManager,
) {
suspend fun getPing(): HttpResponse {
return if (dhisVersionManager.isGreaterThan(DHISVersion.V2_36)) {
return if (dhisVersionManager.isGreaterOrEqualThan(DHISVersion.V2_40)) {
client.get {
url("ping")
excludeCredentials()
Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Include dependency in build.gradle.

```gradle
dependencies {
implementation "org.hisp.dhis:android-core:1.11.0"
implementation "org.hisp.dhis:android-core:1.11.0.1"
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
dhis2AndroidSdkVersion = "1.11.0-SNAPSHOT"
dhis2AndroidSdkVersion = "1.11.0.1-SNAPSHOT"
dhis2AndroidSdkCode = "295"

gradle = "8.6.1"
Expand Down

0 comments on commit b3e4bda

Please sign in to comment.