File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
BatchMixpanelSwiftDispatcher.xcodeproj Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'BatchMixpanelSwiftDispatcher'
3- s . version = '1 .0.1 '
3+ s . version = '2 .0.0 '
44 s . summary = 'Batch.com Events Dispatcher Mixpanel (Swift) implementation.'
55
66 s . description = <<-DESC
@@ -21,7 +21,7 @@ Pod::Spec.new do |s|
2121 s . requires_arc = true
2222 s . static_framework = true
2323
24- s . dependency 'Batch' , '~> 1.16 '
24+ s . dependency 'Batch' , '~> 1.17 '
2525 s . dependency 'Mixpanel-swift'
2626
2727 s . source_files = 'BatchMixpanelSwiftDispatcher/Classes/**/*'
Original file line number Diff line number Diff line change 420420 CLANG_ENABLE_MODULES = YES;
421421 CODE_SIGN_IDENTITY = "Apple Development";
422422 CODE_SIGN_STYLE = Automatic;
423+ CURRENT_PROJECT_VERSION = 2;
423424 DEFINES_MODULE = YES;
424425 DEVELOPMENT_TEAM = U5K2ETC2Y6;
425426 DYLIB_COMPATIBILITY_VERSION = 1;
438439 "@loader_path/Frameworks",
439440 );
440441 MACH_O_TYPE = staticlib;
441- MARKETING_VERSION = 1 .0.0;
442+ MARKETING_VERSION = 2 .0.0;
442443 PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchMixpanelSwiftDispatcher;
443444 PRODUCT_NAME = BatchMixpanelSwiftDispatcher;
444445 SKIP_INSTALL = YES;
454455 CLANG_ENABLE_MODULES = YES;
455456 CODE_SIGN_IDENTITY = "Apple Development";
456457 CODE_SIGN_STYLE = Automatic;
458+ CURRENT_PROJECT_VERSION = 2;
457459 DEFINES_MODULE = YES;
458460 DEVELOPMENT_TEAM = U5K2ETC2Y6;
459461 DYLIB_COMPATIBILITY_VERSION = 1;
472474 "@loader_path/Frameworks",
473475 );
474476 MACH_O_TYPE = staticlib;
475- MARKETING_VERSION = 1 .0.0;
477+ MARKETING_VERSION = 2 .0.0;
476478 PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchMixpanelSwiftDispatcher;
477479 PRODUCT_NAME = BatchMixpanelSwiftDispatcher;
478480 SKIP_INSTALL = YES;
Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ let package = Package(
1414 ] ,
1515 dependencies: [
1616 . package ( url: " https://github.com/mixpanel/mixpanel-swift " , from: " 2.8.0 " ) ,
17+ . package ( url: " https://github.com/BatchLabs/Batch-iOS-SDK " , from: " 1.17.0 " ) ,
1718 ] ,
1819 targets: [
1920 . target(
2021 name: " BatchMixpanelSwiftDispatcher " ,
21- dependencies: [ " Mixpanel " ] ,
22+ dependencies: [ " Mixpanel " , " Batch " ] ,
2223 path: " BatchMixpanelSwiftDispatcher/Classes "
2324 ) ,
2425 ]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ More info about event dispatchers [here](https://doc.batch.com/ios/advanced/even
1616# Requirements
1717 - Xcode 12
1818 - iOS 10+
19- - Batch 1.16
19+ - Batch 1.17
2020
2121# Installation
2222
You can’t perform that action at this time.
0 commit comments