Skip to content

Commit d99518d

Browse files
committed
all: bump versions for 2.0.0
1 parent 8ba32a2 commit d99518d

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

BatchMixpanelSwiftDispatcher.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::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/**/*'

BatchMixpanelSwiftDispatcher.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@
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;
@@ -438,7 +439,7 @@
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;
@@ -454,6 +455,7 @@
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;
@@ -472,7 +474,7 @@
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;

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)