Skip to content
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

Explicit extension safety flag #866

Merged
merged 5 commits into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*Please add new entries at the top.*

1. Bumped deployment target to iOS 11, tvOS 11, watchOS 4, macOS 10.13, per Xcode 14 warnings
1. Explicitly declare `APPLICATION_EXTENSION_API_ONLY`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, maybe mention that this is specific to the CocoaPods installation?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!


# 7.1.0
1. Add CI Release jobs on tag push (#862, kudos to @p4checo)
Expand Down
5 changes: 4 additions & 1 deletion ReactiveSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ Pod::Spec.new do |s|
# Directory glob for all Swift files
s.source_files = ["Sources/*.{swift}", "Sources/**/*.{swift}"]

s.pod_target_xcconfig = {"OTHER_SWIFT_FLAGS[config=Release]" => "$(inherited) -suppress-warnings" }
s.pod_target_xcconfig = {
'APPLICATION_EXTENSION_API_ONLY' => 'YES',
"OTHER_SWIFT_FLAGS[config=Release]" => "$(inherited) -suppress-warnings"
}

s.cocoapods_version = ">= 1.7.0"
s.swift_versions = ["5.2", "5.3" "5.4", "5.5", "5.6", "5.7"]
Expand Down