Skip to content

all: bump version to 4.0.0 & iOS 15 set as minimal platform requirement #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
build:
runs-on: macOS-latest
runs-on: macos-15
steps:
- uses: actions/checkout@v2
- name: Run CI
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ Carthage
Example/Pods/
.scannerwork/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

.build/
6 changes: 3 additions & 3 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 = '3.2.0'
s.version = '4.0.0'
s.summary = 'Batch.com Events Dispatcher Firebase implementation.'

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

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

s.requires_arc = true
Expand Down
16 changes: 8 additions & 8 deletions BatchFirebaseDispatcher.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -394,7 +394,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand All @@ -409,7 +409,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -421,14 +421,14 @@
);
INFOPLIST_FILE = "$(SRCROOT)/BatchFirebaseDispatcher/Module/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.2.0;
MARKETING_VERSION = 4.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchFirebaseDispatcher;
PRODUCT_NAME = BatchFirebaseDispatcher;
SKIP_INSTALL = YES;
Expand All @@ -441,7 +441,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -453,14 +453,14 @@
);
INFOPLIST_FILE = "$(SRCROOT)/BatchFirebaseDispatcher/Module/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.2.0;
MARKETING_VERSION = 4.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.ios.BatchFirebaseDispatcher;
PRODUCT_NAME = BatchFirebaseDispatcher;
SKIP_INSTALL = YES;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 4.0.0

* Batch Firebase Dispatcher now requires iOS 15.0 or higher

## 3.2.0

* Added Batch SDK v2 support.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: framework

PROJECT=BatchFirebaseDispatcher.xcodeproj
SIMULATOR='platform=iOS Simulator,name=iPhone 15'
SIMULATOR='platform=iOS Simulator,name=iPhone 16'
DERIVED_DATA=$(CURDIR)/DerivedData
SONAR_HOME=$(CURDIR)/.sonar
SONAR_WORKDIR=$(CURDIR)/.scannerwork/
Expand Down
12 changes: 6 additions & 6 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import PackageDescription
let package = Package(
name: "BatchFirebaseDispatcher",
defaultLocalization: "en",
platforms: [
.iOS(.v15)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can find a guide explaining how to use the reported events [here](https://he

# Requirements
- Xcode 13
- iOS 10+
- iOS 15+
- Batch 1.19+
- Firebase 8.10+

Expand Down