Skip to content

Commit 3386cec

Browse files
committed
Prepare for release 3.6.1
1 parent 6a79b0e commit 3386cec

7 files changed

+17
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.6.1
2+
3+
#### Fixed
4+
- Fixes an issue with Swift Package Manager which caused errors at compile time.
5+
16
## 3.6.0
27

38
#### Breaking

Pod/Classes/SEGAppboyHelper.m

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#import "SEGAppboyIntegration.h"
33
#if defined(__has_include) && __has_include(<Appboy_iOS_SDK/AppboyKit.h>)
44
#import <Appboy_iOS_SDK/AppboyKit.h>
5+
#elif SWIFT_PACKAGE
6+
#import "AppboyKit.h"
57
#else
68
#import "Appboy-iOS-SDK/AppboyKit.h"
79
#endif

Pod/Classes/SEGAppboyIntegration.h

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#import <Segment/SEGIntegration.h>
44
#elif __has_include(<Analytics/SEGIntegration.h>)
55
#import <Analytics/SEGIntegration.h>
6+
#elif __has_include("SEGIntegration.h")
7+
#import "SEGIntegration.h"
68
#endif
79

810
@interface SEGAppboyIntegration : NSObject<SEGIntegration>

Pod/Classes/SEGAppboyIntegration.m

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
#import <Appboy_iOS_SDK/AppboyKit.h>
44
#import <Appboy_iOS_SDK/ABKUser.h>
55
#import <Appboy_iOS_SDK/ABKAttributionData.h>
6+
#elif SWIFT_PACKAGE
7+
#import "AppboyKit.h"
8+
#import "ABKUser.h"
9+
#import "ABKAttributionData.h"
610
#else
711
#import "Appboy-iOS-SDK/AppboyKit.h"
812
#import "Appboy-iOS-SDK/ABKUser.h"

Pod/Classes/SEGAppboyIntegrationFactory.m

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#import "SEGAppboyIntegrationFactory.h"
22
#if defined(__has_include) && __has_include(<Appboy_iOS_SDK/AppboyKit.h>)
33
#import <Appboy_iOS_SDK/AppboyKit.h>
4+
#elif SWIFT_PACKAGE
5+
#import "AppboyKit.h"
46
#else
57
#import "Appboy-iOS-SDK/AppboyKit.h"
68
#endif

Segment-Appboy.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Segment-Appboy"
3-
s.version = "3.6.0"
3+
s.version = "3.6.1"
44
s.summary = "Braze Integration for Segment's analytics-ios library."
55

66
s.description = <<-DESC

Segment_Appboy.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "3.6.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.6.0/Segment_Appboy.framework.zip", "3.5.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.5.0/Segment_Appboy.framework.zip", "3.4.1": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.4.1/Segment_Appboy.framework.zip", "3.4.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.4.0/Segment_Appboy.framework.zip", "3.3.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.3.0/Segment_Appboy.framework.zip", "3.2.0" : "https://github.com/Appboy/appboy-segment-ios/releases/download/3.2.0/Segment_Appboy.framework.zip"}
1+
{ "3.6.1": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.6.1/Segment_Appboy.framework.zip", "3.6.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.6.0/Segment_Appboy.framework.zip", "3.5.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.5.0/Segment_Appboy.framework.zip", "3.4.1": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.4.1/Segment_Appboy.framework.zip", "3.4.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.4.0/Segment_Appboy.framework.zip", "3.3.0": "https://github.com/Appboy/appboy-segment-ios/releases/download/3.3.0/Segment_Appboy.framework.zip", "3.2.0" : "https://github.com/Appboy/appboy-segment-ios/releases/download/3.2.0/Segment_Appboy.framework.zip"}

0 commit comments

Comments
 (0)