diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f6c6a3f..8b2dc09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# 2.29.0 (February 2025) + +- [Update]: This version updates the Vonage Video Android SDK and iOS SDK to version 2.29.0. See the [Android SDK release notes](https://developer.vonage.com/en/video/client-sdks/android/release-notes) and the [iOS SDK release notes](https://developer.vonage.com/en/video/client-sdks/ios/release-notes). + # 2.28.3 (October 2024) -- [Update]: This version updates the Vonage Video Android SDK to version 2.28.3 and the Vonage Video iOS SDK to version 2.28.2. See the [Android SDK release notes](https://tokbox.com/developer/sdks/android/release-notes.html) and the [iOS SDK release notes](https://tokbox.com/developer/sdks/ios/release-notes.html). +- [Update]: This version updates the Vonage Video Android SDK to version 2.28.3 and the Vonage Video iOS SDK to version 2.28.2. See the [Android SDK release notes](https://developer.vonage.com/en/video/client-sdks/android/release-notes) and the [iOS SDK release notes](https://developer.vonage.com/en/video/client-sdks/ios/release-notes). This version updates `sourceCompatibility` and `targetCompatibility` to Java 17 in the Android build.gradle file. When using this version, you will need to specify `sourceCompatibility` and `targetCompatibility` in the Android build.gradle file: diff --git a/README.md b/README.md index f00377cc..64d72b7a 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ See the system requirements for the [OpenTok Android SDK](https://tokbox.com/dev ``` target '' do # Pods for - pod 'VonageClientSDKVideoMacOS', '2.28.2' + pod 'VonageClientSDKVideoMacOS', '2.29.0' end ``` diff --git a/android/build.gradle b/android/build.gradle index 647377de..4cdddcfb 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -27,5 +27,5 @@ android { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:${_reactNativeVersion}" // From node_modules - implementation 'com.vonage:client-sdk-video:2.28.3' + implementation 'com.vonage:client-sdk-video:2.29.0' } diff --git a/client-sdk-video-react-native.podspec b/client-sdk-video-react-native.podspec index f90832d4..0e929052 100644 --- a/client-sdk-video-react-native.podspec +++ b/client-sdk-video-react-native.podspec @@ -17,5 +17,5 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,swift}" s.dependency 'React' - s.dependency 'VonageClientSDKVideo','2.28.2' + s.dependency 'VonageClientSDKVideo','2.29.0' end