Skip to content

Commit d094036

Browse files
authored
Merge pull request #128 from apptentive/develop
Release 5.5.3
2 parents 0b105f2 + c5cb03e commit d094036

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This document lets you know what has changed in the React Native module. For cha
55
- [Android Changelog](https://github.com/apptentive/apptentive-android/blob/master/CHANGELOG.md)
66
- [iOS Changelog](https://github.com/apptentive/apptentive-ios/blob/master/CHANGELOG.md)
77

8+
# 2020-09-04 - v5.5.3
9+
10+
- Android 11 support.
11+
- Apptentive Android SDK: 5.5.4
12+
- Apptentive iOS SDK: 5.2.14
13+
814
# 2020-08-07 - v5.5.2
915

1016
- iOS module now resolves promises for methods that don't return a value.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
33
<string name="apptentive_distribution">React Native</string>
4-
<string name="apptentive_distribution_version">5.5.2</string>
4+
<string name="apptentive_distribution_version">5.5.3</string>
55
</resources>

apptentive-react-native.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "apptentive-react-native"
3-
s.version = "5.5.2"
3+
s.version = "5.5.3"
44
s.summary = "Apptentive SDK module for React Native"
55

66
s.description = <<-DESC

ios/RNApptentiveModule.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ - (dispatch_queue_t)methodQueue
5252
if (configuration) {
5353
configuration.appID = configurationDictionary[@"appleID"];
5454
configuration.distributionName = @"React Native";
55-
configuration.distributionVersion = @"5.5.2";
55+
configuration.distributionVersion = @"5.5.3";
5656
[Apptentive registerWithConfiguration:configuration];
5757

5858
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(messageCenterUnreadCountChangedNotification:) name:ApptentiveMessageCenterUnreadCountChangedNotification object:nil];

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apptentive-react-native",
3-
"version": "5.5.2",
3+
"version": "5.5.3",
44
"description": "React Native Module for Apptentive SDK",
55
"main": "js/index.js",
66
"types": "js/index.d.ts",

0 commit comments

Comments
 (0)