Skip to content

Commit 78a9adf

Browse files
chore: Bump version for V7 (#182)
1 parent f82389b commit 78a9adf

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,9 @@ See the [example app](https://github.com/intercom/intercom-react-native/blob/mai
282282

283283
### IOS
284284

285+
Intercom for iOS requires a **minimum iOS version of 15.**
286+
287+
285288
```sh
286289
cd ios
287290
pod install

example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@
450450
CURRENT_PROJECT_VERSION = 1;
451451
ENABLE_BITCODE = NO;
452452
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
453-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
453+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
454454
LD_RUNPATH_SEARCH_PATHS = (
455455
"$(inherited)",
456456
"@executable_path/Frameworks",
@@ -485,7 +485,7 @@
485485
CURRENT_PROJECT_VERSION = 1;
486486
DEVELOPMENT_TEAM = "";
487487
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
488-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
488+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
489489
LD_RUNPATH_SEARCH_PATHS = (
490490
"$(inherited)",
491491
"@executable_path/Frameworks",

example/ios/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
22
require_relative '../node_modules/react-native/scripts/react_native_pods'
33

4-
platform :ios, '13.0'
4+
platform :ios, '15.0'
55

66
target 'IntercomReactNativeExample' do
77
config = use_native_modules!
@@ -28,7 +28,7 @@ target 'IntercomReactNativeExample' do
2828
installer.aggregate_targets.each do |aggregate_target|
2929
aggregate_target.user_project.native_targets.each do |target|
3030
target.build_configurations.each do |config|
31-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
31+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
3232
config.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)']
3333
end
3434
end

example/ios/Podfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ PODS:
7373
- FlipperKit/FlipperKitNetworkPlugin
7474
- fmt (6.2.1)
7575
- glog (0.3.5)
76-
- Intercom (16.5.9)
77-
- intercom-react-native (6.6.0):
78-
- Intercom (~> 16.5.9)
76+
- Intercom (17.0.0)
77+
- intercom-react-native (7.0.0):
78+
- Intercom (~> 17.0.0)
7979
- React-Core
8080
- libevent (2.1.12)
8181
- OpenSSL-Universal (1.1.1100)
@@ -533,8 +533,8 @@ SPEC CHECKSUMS:
533533
FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
534534
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
535535
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
536-
Intercom: d9c81b3e45e6ecd9b2db2dc188d0521a40393f56
537-
intercom-react-native: 4f1166b40dd470211521a55893a4957614cccfd5
536+
Intercom: 558a47a197e619a9f16411e133bc2c57a27e6fbb
537+
intercom-react-native: d599994cb9309a146af32910cc3ff1abf968a837
538538
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
539539
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
540540
RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda
@@ -569,6 +569,6 @@ SPEC CHECKSUMS:
569569
Yoga: dc109b79db907f0f589fc423e991b09ec42d2295
570570
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
571571

572-
PODFILE CHECKSUM: a7cafffdaddc0dfe4e20cc0d2b857d47f9bcf58b
572+
PODFILE CHECKSUM: 5b73a3a6016c3b2a7e9c6110204bbbc9a99a9f81
573573

574-
COCOAPODS: 1.12.1
574+
COCOAPODS: 1.15.2

intercom-react-native.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ Pod::Spec.new do |s|
1010
s.license = package["license"]
1111
s.authors = package["author"]
1212

13-
s.platforms = { :ios => "13.0" }
13+
s.platforms = { :ios => "15.0" }
1414
s.source = { :git => "https://github.com/intercom/intercom-react-native.git", :tag => "#{s.version}" }
1515

1616
s.source_files = "ios/**/*.{h,m,mm}"
1717
s.resource_bundles = { 'IntercomFramework' => ['ios/assets/*'] }
1818

1919
s.dependency "React-Core"
20-
s.dependency "Intercom", '~> 16.5.9'
20+
s.dependency "Intercom", '~> 17.0.0'
2121
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intercom/intercom-react-native",
3-
"version": "6.8.1",
3+
"version": "7.0.0",
44
"description": "React Native wrapper to bridge our iOS and Android SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)