diff --git a/CHANGELOG.md b/CHANGELOG.md index 21dd43f..de1c6a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Note that all version `X.Y.Z.T` of this adapter have been tested against the mat `X.Y.Z` of the Publisher SDK. ## Next + +## Version 4.4.0.0 * Artifacts are now delivered through `Maven Central` repository instead of `JCenter` which is deprecated. diff --git a/README.md b/README.md index 089d811..a330137 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ allprojects { Then, in your app's module *build.gradle* file, add the following implementation configuration to the *dependencies* section: ```kotlin -implementation 'com.criteo.mediation.google:criteo-adapter:4.3.0.0' +implementation 'com.criteo.mediation.google:criteo-adapter:4.4.0.0' ``` # License diff --git a/build.gradle b/build.gradle index c59ff36..0f91808 100644 --- a/build.gradle +++ b/build.gradle @@ -57,7 +57,7 @@ ext { * deployed as well with version A.B.C.0. If fixes, or updates are required on the adapter without updating * the SDK, then the last digit is incremented to produce A.B.C.1, then A.B.C.2, ... */ - adapter_version = "4.3.0.0" + adapter_version = "4.4.0.0" isSnapshot = properties["isRelease"] != "true" def timestamp = new Date().format("yyyyMMdd.HHmm")