Skip to content

Commit

Permalink
Release/7.8.1 (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah authored Mar 21, 2024
1 parent 03a7761 commit 3ea7f50
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions cmplibrary/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME = 7.8.0
VERSION_NAME = 7.8.1

POM_NAME = cmplibrary
POM_REPO = sourcepoint
Expand All @@ -9,4 +9,4 @@ POM_ISSUE_TRACKER_URL = https://github.com/SourcePointUSA/android-cmp-app/issues
GITHUB_REPO = SourcePointUSA/android-cmp-app

GROUP_ID = com.sourcepoint.cmplibrary
ARTIFACT_ID = cmplibrary
ARTIFACT_ID = cmplibrary
4 changes: 2 additions & 2 deletions cmplibrary/release_note.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* [DIA-3525](https://sourcepoint.atlassian.net/browse/DIA-3525) Add flag to enable support to uspstring within usnat campaign [https://github.com/SourcePointUSA/android-cmp-app/pull/785](#785)
* [DIA-3560](https://sourcepoint.atlassian.net/browse/DIA-3560) expand usnat consents object [https://github.com/SourcePointUSA/android-cmp-app/pull/791](#791)
* [DIA-3710](https://sourcepoint.atlassian.net/browse/DIA-3710) Fix an issue causing granular state consent status to assume a wrong value. [https://github.com/SourcePointUSA/android-cmp-app/pull/799](#799)
* [DIA-3630](https://sourcepoint.atlassian.net/browse/DIA-3630) Update utility functions for Unity. [https://github.com/SourcePointUSA/android-cmp-app/pull/794](#794)
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ internal data class ConsentStatusParamReq(
enum class GranularState {
ALL,
SOME,
NONE
NONE,
EMPTY_VL,
}

enum class GCMStatus(val status: String) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ fun throwableToException(throwable: Throwable) {
fun <T> arrayToList(array: Array<T>): List<T> {
return array.toList()
}

fun <T> arrayToSet(array: Array<T>): Set<T> {
return array.toSet()
}
9 changes: 3 additions & 6 deletions scripts/publish-mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ ext["signing.password"] = ''
ext["signing.secretKeyRingFile"] = ''
ext["ossrhUsername"] = ''
ext["ossrhPassword"] = ''
ext["sonatypeStagingProfileId"] = ''

File secretPropsFile = project.rootProject.file('local.properties')
if (secretPropsFile.exists()) {
Expand All @@ -52,7 +51,6 @@ if (secretPropsFile.exists()) {
ext["signing.secretKeyRingFile"] = rootDir.path + "/" + System.getenv('SIGNING_SECRET_KEY_RING_FILE')
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
}

publishing {
Expand Down Expand Up @@ -81,9 +79,9 @@ publishing {
}
developers {
developer {
id = 'carmelo-iriti'
name = 'Carmelo Iriti'
email = 'carmelo@sourcepoint.com'
id = 'andresilveirah'
name = 'Andre Herculano'
email = 'andresilveirah@gmail.com'
}
}
scm {
Expand Down Expand Up @@ -124,7 +122,6 @@ publishing {

nexusStaging {
packageGroup = GROUP_ID
// stagingProfileId = sonatypeStagingProfileId
username = ossrhUsername
password = ossrhPassword
}
Expand Down

0 comments on commit 3ea7f50

Please sign in to comment.