Skip to content

Commit

Permalink
Merge pull request #128 from AppsFlyerSDK/releases/6.x.x/6.12.x/6.12.…
Browse files Browse the repository at this point in the history
…1-rc1

Releases/6.x.x/6.12.x/6.12.1 rc1
  • Loading branch information
morisgateno-appsflyer authored Aug 21, 2023
2 parents db9ae06 + eff02e9 commit 5d451f5
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/bash_scripts/pre_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ sed -r -i '' "s/(.*pod \'segment-appsflyer-ios\')(.*\'[0-9]+\.[0-9]+\.[0-9]+\')/
sed -r -i '' "s/(## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v)(.*)/\1$appsflyerLibVersion./g" README.md
sed -r -i '' "s/(.*pod \'segment-appsflyer-ios.*)([0-9]+\.[0-9]+\.[0-9]+)(.*)/\1$appsflyerLibVersion\3/g" README.md

sed -r -i '' "s/(.*pluginVersion.*)([0-9]+\.[0-9]+\.[0-9]+)(.*)/\1$appsflyerLibVersion\3/g" segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m

touch "releasenotes.$appsflyerLibVersion"
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git" , from: "4.0.0"),
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.10.1")),
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.12.1")),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AppsFlyer integration for Segment.

## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.10.1.
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.12.1.

[![Version](https://img.shields.io/badge/cocoapods-compatible-brightgreen?logo=cocoapods&logoColor=green&style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios)
[![Carthage compatible](https://img.shields.io/badge/Carthage-not_compatible-C20000.svg?style=flat)](https://github.com/Carthage/Carthage)
Expand Down Expand Up @@ -48,12 +48,12 @@ To install the segment-appsflyer-ios integration:

**Production** version:
```ruby
pod 'segment-appsflyer-ios', '6.10.1'
pod 'segment-appsflyer-ios', '6.12.1'
```

**Strict mode SDK** version:
```ruby
pod 'segment-appsflyer-ios/Strict', '6.10.1'
pod 'segment-appsflyer-ios/Strict', '6.12.1'
```
Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids).

Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 6.12.1
* * Update to Appsflyer SDK 6.12.1.

### 6.10.1
* Update iOS SDK to v6.10.1
* Added ci-cd.
Expand Down
2 changes: 1 addition & 1 deletion examples/ObjcPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ target 'ObjcPodsSample' do
use_frameworks!

# Pods for ObjcPodsSample
pod 'segment-appsflyer-ios','6.10.1'
pod 'segment-appsflyer-ios','6.12.1'
end
2 changes: 1 addition & 1 deletion examples/SwiftPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ target 'SwiftPodsSample' do
use_frameworks!

# Pods for SwiftPodsSample
pod 'segment-appsflyer-ios','6.10.1'
pod 'segment-appsflyer-ios','6.12.1'

end
4 changes: 2 additions & 2 deletions segment-appsflyer-ios.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version_appsflyerLib = '6.10.1'
version_plugin = '6.10.1'
version_appsflyerLib = '6.12.1'
version_plugin = '6.12.1'

Pod::Spec.new do |s|
s.name = "segment-appsflyer-ios"
Expand Down
4 changes: 2 additions & 2 deletions segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAnalytics:(SEGAnal

self.appsflyer = [self appsflyerLib];
[self.appsflyer setPluginInfoWith:AFSDKPluginSegment
pluginVersion:@"6.10.1"
pluginVersion:@"6.12.1"
additionalParams:nil];
[self.appsflyer setAppsFlyerDevKey:afDevKey];
[self.appsflyer setAppleAppID:appleAppId];
Expand Down Expand Up @@ -93,7 +93,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAppsflyer:(AppsFly
self.appsflyer = aAppsflyer;

[self.appsflyer setPluginInfoWith:AFSDKPluginSegment
pluginVersion:@"6.10.1"
pluginVersion:@"6.12.1"
additionalParams:nil];

NSString *afDevKey = [self.settings objectForKey:@"appsFlyerDevKey"];
Expand Down

0 comments on commit 5d451f5

Please sign in to comment.