Skip to content

Commit

Permalink
Prepare for release 3.4.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
chshapiro committed Aug 26, 2020
1 parent 5f2d94d commit 6022d45
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## 3.4.0-beta1

- This release can be used to beta test iOS 14.

#### Breaking
- Updated to [Braze iOS SDK 3.27.0-beta2](https://github.com/Appboy/appboy-ios-sdk/releases/tag/3.27.0-beta2).
- Integrators will now be required to exclude the `arm64` simulator slice in their entire project. Please see the [Appboy-iOS-SDK Changelog](https://github.com/Appboy/appboy-ios-sdk/blob/ios14-beta/CHANGELOG.md#changed) for more information.

## 3.3.0

#### Changed
- Updated to [Braze iOS SDK 3.26.1](https://github.com/Appboy/appboy-ios-sdk/releases/tag/3.26.1).
- Deprecates the compilation macro `ABK_ENABLE_IDFA_COLLECTION` in favor of the `ABKIDFADelegate` implementation.
Expand Down
16 changes: 10 additions & 6 deletions Segment-Appboy.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Segment-Appboy"
s.version = "3.3.0"
s.version = "3.4.0-beta1"
s.summary = "Braze Integration for Segment's analytics-ios library."

s.description = <<-DESC
Expand All @@ -18,31 +18,35 @@ Pod::Spec.new do |s|
s.platform = :ios, '9.0'
s.requires_arc = true

# Skip this architecture to pass Pod validation since we removed the `arm64` simulator ARCH in order to use lipo later
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }

s.dependency 'Analytics'
s.default_subspec = 'Full-SDK'

s.subspec 'Full-SDK' do |default|
default.dependency 'Appboy-iOS-SDK', '~>3.26.1'
default.dependency 'Appboy-iOS-SDK', '3.27.0-beta2'
default.source_files = 'Pod/Classes/**/*'
end

s.subspec 'Core' do |core|
core.dependency 'Appboy-iOS-SDK/Core', '~>3.26.1'
core.dependency 'Appboy-iOS-SDK/Core', '3.27.0-beta2'
core.source_files = 'Pod/Classes/**/*'
end

s.subspec 'InAppMessage' do |iam|
iam.dependency 'Appboy-iOS-SDK/InAppMessage', '~>3.26.1'
iam.dependency 'Appboy-iOS-SDK/InAppMessage', '3.27.0-beta2'
iam.source_files = 'Pod/Classes/**/*'
end

s.subspec 'NewsFeed' do |nf|
nf.dependency 'Appboy-iOS-SDK/NewsFeed', '~>3.26.1'
nf.dependency 'Appboy-iOS-SDK/NewsFeed', '3.27.0-beta2'
nf.source_files = 'Pod/Classes/**/*'
end

s.subspec 'ContentCards' do |cc|
cc.dependency 'Appboy-iOS-SDK/ContentCards', '~>3.26.1'
cc.dependency 'Appboy-iOS-SDK/ContentCards', '3.27.0-beta2'
cc.source_files = 'Pod/Classes/**/*'
end

Expand Down

0 comments on commit 6022d45

Please sign in to comment.