From 665b6220d7d426cec4a7ed17f84d531c7c070c92 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Fri, 21 Jun 2019 14:15:04 -0700 Subject: [PATCH 1/2] Bump version, add CHANGELOG entry --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9459cf2..8d7d49c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) +# 2019-06-21 - v5.4.3 + +- Fix missing `ios` and `android` directories + # 2019-05-17 - v5.4.2 - Added TypeScript definitions diff --git a/package.json b/package.json index b4bc118..3da3477 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apptentive-react-native", - "version": "5.4.2", + "version": "5.4.3", "description": "React Native Module for Apptentive SDK", "main": "js/index.js", "types": "js/index.d.ts", From aea9a18c35d121e95b6113922c90fa4ec25e92f6 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Fri, 21 Jun 2019 14:15:56 -0700 Subject: [PATCH 2/2] Updated files for 5.4.3 release --- android/src/main/res/values/strings.xml | 2 +- ios/RNApptentiveModule.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/main/res/values/strings.xml b/android/src/main/res/values/strings.xml index 84daa78..148f123 100644 --- a/android/src/main/res/values/strings.xml +++ b/android/src/main/res/values/strings.xml @@ -1,5 +1,5 @@ React Native - 5.4.2 + 5.4.3 diff --git a/ios/RNApptentiveModule.m b/ios/RNApptentiveModule.m index 0d5c047..0ddc2a9 100644 --- a/ios/RNApptentiveModule.m +++ b/ios/RNApptentiveModule.m @@ -52,7 +52,7 @@ - (dispatch_queue_t)methodQueue if (configuration) { configuration.appID = configurationDictionary[@"appleID"]; configuration.distributionName = @"React Native"; - configuration.distributionVersion = @"5.4.2"; + configuration.distributionVersion = @"5.4.3"; [Apptentive registerWithConfiguration:configuration]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(messageCenterUnreadCountChangedNotification:) name:ApptentiveMessageCenterUnreadCountChangedNotification object:nil];