diff --git a/CHANGELOG.md b/CHANGELOG.md index d493ffc..745e86a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This document lets you know what has changed in the React Native module. For cha - [Android Changelog](https://github.com/apptentive/apptentive-android/blob/master/CHANGELOG.md) - [iOS Changelog](https://github.com/apptentive/apptentive-ios/blob/master/CHANGELOG.md) +# 2022-03-23 - v5.8.3 + +- Apptentive Android SDK: 5.8.3 +- Apptentive iOS SDK: 5.3.4 + # 2022-01-10 - v5.8.0 - Apptentive Android SDK: 5.8.0 diff --git a/android/build.gradle b/android/build.gradle index 5a4e64e..20703bf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -32,5 +32,5 @@ repositories { dependencies { implementation 'com.facebook.react:react-native:+' - implementation 'com.apptentive:apptentive-android:5.8.0' + implementation 'com.apptentive:apptentive-android:5.8.3' } \ No newline at end of file diff --git a/android/src/main/res/values/strings.xml b/android/src/main/res/values/strings.xml index bd4d94f..e4dbf87 100644 --- a/android/src/main/res/values/strings.xml +++ b/android/src/main/res/values/strings.xml @@ -1,5 +1,5 @@ React Native - 5.8.0 + 5.8.3 diff --git a/apptentive-react-native.podspec b/apptentive-react-native.podspec index 868a524..20e2689 100644 --- a/apptentive-react-native.podspec +++ b/apptentive-react-native.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "apptentive-react-native" - s.version = "5.8.0" + s.version = "5.8.3" s.summary = "Apptentive SDK module for React Native" s.description = <<-DESC diff --git a/ios/RNApptentiveModule.m b/ios/RNApptentiveModule.m index a2ec59d..c8bcdda 100644 --- a/ios/RNApptentiveModule.m +++ b/ios/RNApptentiveModule.m @@ -64,7 +64,7 @@ - (dispatch_queue_t)methodQueue if (configuration) { configuration.appID = configurationDictionary[@"appleID"]; configuration.distributionName = @"React Native"; - configuration.distributionVersion = @"5.8.0"; + configuration.distributionVersion = @"5.8.3"; [Apptentive registerWithConfiguration:configuration]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(messageCenterUnreadCountChangedNotification:) name:ApptentiveMessageCenterUnreadCountChangedNotification object:nil]; diff --git a/package.json b/package.json index c2cd4b3..9d84a13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apptentive-react-native", - "version": "5.8.0", + "version": "5.8.3", "description": "React Native Module for Apptentive SDK", "main": "js/index.js", "types": "js/index.d.ts",