Skip to content

Commit 4a4e8ef

Browse files
authored
Merge pull request #95 from AppsFlyerSDK/dev/DELIVERY-23383
Dev/delivery 23383
2 parents 3b33970 + 2d5ef03 commit 4a4e8ef

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json"
2-
github "segmentio/analytics-ios"
1+
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" == 6.9.1
2+
github "segmentio/analytics-ios"

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.8.1"
2-
github "segmentio/analytics-ios" "4.1.6"
1+
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.9.1"
2+
github "segmentio/analytics-ios" "4.1.8"

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
dependencies: [
1818
// Dependencies declare other packages that this package depends on.
1919
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git" , from: "4.0.0"),
20-
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", from: "6.8.1"),
20+
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.9.1")),
2121
],
2222
targets: [
2323
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# AppsFlyer integration for Segment.
44

5-
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.8.1.
5+
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.9.1.
66

77
[![Version](https://img.shields.io/cocoapods/v/segment-appsflyer-ios.svg?style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios)
88
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
@@ -48,12 +48,12 @@ To install the segment-appsflyer-ios integration:
4848

4949
**Production** version:
5050
```ruby
51-
pod 'segment-appsflyer-ios', '6.8.1'
51+
pod 'segment-appsflyer-ios', '6.9.1'
5252
```
5353

5454
**Strict mode SDK** version:
5555
```ruby
56-
pod 'segment-appsflyer-ios/Strict', '6.8.1'
56+
pod 'segment-appsflyer-ios/Strict', '6.9.1'
5757
```
5858
Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids).
5959

@@ -65,7 +65,7 @@ Use the strict mode SDK to completely remove IDFA collection functionality and A
6565

6666
**Production** version:
6767
```ogdl
68-
github "AppsFlyerSDK/segment-appsflyer-ios" "6.8.1"
68+
github "AppsFlyerSDK/segment-appsflyer-ios" "6.9.1"
6969
```
7070

7171

examples/ObjcPodsSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ target 'ObjcPodsSample' do
66
use_frameworks!
77

88
# Pods for ObjcPodsSample
9-
pod 'segment-appsflyer-ios', '~> 6.8.1'
9+
pod 'segment-appsflyer-ios', '6.9.1'
1010
end

examples/SwiftPodsSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ target 'SwiftPodsSample' do
66
use_frameworks!
77

88
# Pods for SwiftPodsSample
9-
pod 'segment-appsflyer-ios', '~> 6.8.1'
9+
pod 'segment-appsflyer-ios', '6.9.1'
1010

1111
end

segment-appsflyer-ios.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "segment-appsflyer-ios"
3-
s.version = "6.8.1"
3+
s.version = "6.9.1"
44
s.summary = "AppsFlyer Integration for Segment's analytics-ios library."
55

66
s.description = <<-DESC
@@ -22,14 +22,14 @@ Pod::Spec.new do |s|
2222

2323
s.default_subspecs = 'Main'
2424
s.subspec 'Main' do |ss|
25-
ss.ios.dependency 'AppsFlyerFramework','~> 6.8.1'
26-
ss.tvos.dependency 'AppsFlyerFramework', '~> 6.8.1'
25+
ss.ios.dependency 'AppsFlyerFramework','6.9.1'
26+
ss.tvos.dependency 'AppsFlyerFramework', '6.9.1'
2727
ss.source_files = 'segment-appsflyer-ios/Classes/**/*'
2828
end
2929

3030
s.subspec 'Strict' do |ss|
31-
ss.ios.dependency 'AppsFlyerFramework/Strict', '~> 6.8.1'
32-
ss.tvos.dependency 'AppsFlyerFramework/Strict', '~> 6.8.1'
31+
ss.ios.dependency 'AppsFlyerFramework/Strict', '6.9.1'
32+
ss.tvos.dependency 'AppsFlyerFramework/Strict', '6.9.1'
3333
ss.source_files = 'segment-appsflyer-ios/Classes/**/*'
3434
end
3535
end

0 commit comments

Comments
 (0)