From 63cb716ce48b580dce730f7967ffcc4ecab2d130 Mon Sep 17 00:00:00 2001 From: Helium Service <103450738+helium-service@users.noreply.github.com> Date: Thu, 5 Sep 2024 10:37:15 -0400 Subject: [PATCH] 5.7.4.1.0 (#67) --- CHANGELOG.md | 3 +++ README.md | 2 +- VungleAdapter/build.gradle.kts | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d593f8..61511c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ Note the first digit of every adapter version corresponds to the major version of the Chartboost Mediation SDK compatible with that adapter. Adapters are compatible with any Chartboost Mediation SDK version within that major version. +### 5.7.4.1.0 +- This version of the adapter has been certified with Vungle SDK 7.4.1. + ### 5.7.4.0.0 - This version of the adapter supports Chartboost Mediation SDK version 5.+. - This version of the adapter has been certified with Vungle SDK 7.4.0. diff --git a/README.md b/README.md index 046aeaf..61150ff 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The Chartboost Mediation Vungle adapter mediates Vungle via the Chartboost Media In your `build.gradle`, add the following entry: ``` - implementation "com.chartboost:chartboost-mediation-adapter-vungle:5.7.4.0.0" + implementation "com.chartboost:chartboost-mediation-adapter-vungle:5.7.4.1.0" ``` ## Contributions diff --git a/VungleAdapter/build.gradle.kts b/VungleAdapter/build.gradle.kts index 1a85a98..8370b4d 100644 --- a/VungleAdapter/build.gradle.kts +++ b/VungleAdapter/build.gradle.kts @@ -42,7 +42,7 @@ android { minSdk = 21 targetSdk = 34 // If you touch the following line, don't forget to update scripts/get_rc_version.zsh - android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "5.7.4.0.0" + android.defaultConfig.versionName = System.getenv("VERSION_OVERRIDE") ?: "5.7.4.1.0" buildConfigField("String", "CHARTBOOST_MEDIATION_VUNGLE_ADAPTER_VERSION", "\"${android.defaultConfig.versionName}\"") consumerProguardFiles("proguard-rules.pro") @@ -91,7 +91,7 @@ dependencies { "candidateImplementation"("com.chartboost:chartboost-mediation-sdk:5.0.0") // Partner SDK - implementation("com.vungle:vungle-ads:7.4.0") + implementation("com.vungle:vungle-ads:7.4.1") // Adapter Dependencies implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")