Skip to content

Commit

Permalink
all: 2.0.0 release and version bumps.
Browse files Browse the repository at this point in the history
Minimum iOS version = 10.0
Minimum Batch version = 1.17.0
  • Loading branch information
abarisain committed Mar 9, 2021
1 parent 45f2b1b commit ac18897
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
8 changes: 4 additions & 4 deletions BatchFirebaseDispatcher.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BatchFirebaseDispatcher'
s.version = '1.0.1'
s.version = '2.0.0'
s.summary = 'Batch.com Events Dispatcher Firebase implementation.'

s.description = <<-DESC
Expand All @@ -12,15 +12,15 @@ Pod::Spec.new do |s|
s.author = { 'Batch.com' => 'support@batch.com' }
s.source = { :git => 'https://github.com/BatchLabs/Batch-iOS-firebase-dispatcher.git', :tag => s.version.to_s }

s.ios.deployment_target = '8.0'
s.ios.deployment_target = '10.0'
s.platforms = {
"ios" => "8.0"
"ios" => "10.0"
}

s.requires_arc = true
s.static_framework = true

s.dependency 'Batch', '~> 1.15'
s.dependency 'Batch', '~> 1.17'
s.dependency 'Firebase/Analytics'

s.source_files = 'BatchFirebaseDispatcher/Classes/**/*'
Expand Down
10 changes: 6 additions & 4 deletions BatchFirebaseDispatcher.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -420,14 +421,14 @@
);
INFOPLIST_FILE = "$(SRCROOT)/BatchFirebaseDispatcher/Module/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 2.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchFirebaseDispatcher;
PRODUCT_NAME = BatchFirebaseDispatcher;
SKIP_INSTALL = YES;
Expand All @@ -440,6 +441,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -451,14 +453,14 @@
);
INFOPLIST_FILE = "$(SRCROOT)/BatchFirebaseDispatcher/Module/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 2.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchFirebaseDispatcher;
PRODUCT_NAME = BatchFirebaseDispatcher;
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 2.0.0

* Add support for Batch's WebView In-App format. Bumps required Batch version to 1.17.0.
* Add support for Batch's WebView In-App format. Bumps required Batch version to 1.17.0. Minimum iOS version is now 10.0.


## 1.0.0 & 1.0.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ More info about event dispatchers [here](https://doc.batch.com/ios/advanced/even
You can find a guide explaining how to use the reported events [here](https://help.batch.com/en/articles/3597151-how-to-export-my-campaign-s-data-to-firebase-google-analytics-or-at-internet-using-events-dispatcher).

# Requirements
- Xcode 11
- iOS 8+
- Xcode 12
- iOS 10+
- Batch 1.15

# Installation
Expand Down

0 comments on commit ac18897

Please sign in to comment.