Skip to content

Commit a5cd40d

Browse files
authored
Merge pull request #29 from apptentive/develop
Release 5.1.2
2 parents e6c7da7 + a0fc647 commit a5cd40d

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
# 2018-07-26 - v5.1.2
9+
10+
- Fix missing dependency in podspec
11+
812
# 2018-07-24 - v5.1.1
913

1014
- Add podspec for projects integrating React via (deprecated) CocoaPod
+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.1.1</string>
4+
<string name="apptentive_distribution_version">5.1.2</string>
55
</resources>

apptentive-react-native.podspec

+2-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.1.1"
3+
s.version = "5.1.2"
44
s.summary = "Apptentive SDK module for React Native"
55

66
s.description = <<-DESC
@@ -16,4 +16,5 @@ Pod::Spec.new do |s|
1616
s.source_files = "ios/*.{h,m}"
1717
s.public_header_files = "ios/*.h"
1818
s.dependency "React"
19+
s.dependency "apptentive-ios", "~>5.1"
1920
end

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.1.1";
55+
configuration.distributionVersion = @"5.1.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.1.1",
3+
"version": "5.1.2",
44
"description": "React Native Module for Apptentive SDK",
55
"main": "js/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)