Skip to content

Commit

Permalink
Merge pull request #29 from apptentive/develop
Browse files Browse the repository at this point in the history
Release 5.1.2
  • Loading branch information
frankus authored Jul 26, 2018
2 parents e6c7da7 + a0fc647 commit a5cd40d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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)

# 2018-07-26 - v5.1.2

- Fix missing dependency in podspec

# 2018-07-24 - v5.1.1

- Add podspec for projects integrating React via (deprecated) CocoaPod
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="apptentive_distribution">React Native</string>
<string name="apptentive_distribution_version">5.1.1</string>
<string name="apptentive_distribution_version">5.1.2</string>
</resources>
3 changes: 2 additions & 1 deletion apptentive-react-native.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "apptentive-react-native"
s.version = "5.1.1"
s.version = "5.1.2"
s.summary = "Apptentive SDK module for React Native"

s.description = <<-DESC
Expand All @@ -16,4 +16,5 @@ Pod::Spec.new do |s|
s.source_files = "ios/*.{h,m}"
s.public_header_files = "ios/*.h"
s.dependency "React"
s.dependency "apptentive-ios", "~>5.1"
end
2 changes: 1 addition & 1 deletion ios/RNApptentiveModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ - (dispatch_queue_t)methodQueue
if (configuration) {
configuration.appID = configurationDictionary[@"appleID"];
configuration.distributionName = @"React Native";
configuration.distributionVersion = @"5.1.1";
configuration.distributionVersion = @"5.1.2";
[Apptentive registerWithConfiguration:configuration];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(messageCenterUnreadCountChangedNotification:) name:ApptentiveMessageCenterUnreadCountChangedNotification object:nil];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apptentive-react-native",
"version": "5.1.1",
"version": "5.1.2",
"description": "React Native Module for Apptentive SDK",
"main": "js/index.js",
"scripts": {
Expand Down

0 comments on commit a5cd40d

Please sign in to comment.