Skip to content

Commit c60b336

Browse files
authored
Merge pull request #140 from apptentive/develop
Release 5.6.2
2 parents d2c2aac + c5db7e2 commit c60b336

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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-10-22 - v5.6.2
9+
10+
- Apptentive Android SDK: 5.6.1
11+
- Apptentive iOS SDK: 5.3.1
12+
813
# 2020-10-22 - v5.6.1
914

1015
- Fixed missing iOS header file.

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ repositories {
3232

3333
dependencies {
3434
implementation 'com.facebook.react:react-native:+'
35-
implementation 'com.apptentive:apptentive-android:5.6.0'
35+
implementation 'com.apptentive:apptentive-android:5.6.1'
3636
}
+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.6.1</string>
4+
<string name="apptentive_distribution_version">5.6.2</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.6.1"
3+
s.version = "5.6.2"
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.6.1";
55+
configuration.distributionVersion = @"5.6.2";
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.6.1",
3+
"version": "5.6.2",
44
"description": "React Native Module for Apptentive SDK",
55
"main": "js/index.js",
66
"types": "js/index.d.ts",

0 commit comments

Comments
 (0)