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

feat: Carthage BUILD_LIBRARY_FOR_DISTRIBUTION = YES #175

Merged
merged 2 commits into from
Feb 5, 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.9.3

- Feat: Carthage BUILD_LIBRARY_FOR_DISTRIBUTION = YES

# 2.9.2

- Fix: recursive calls in convenience initializers
Expand Down
10 changes: 5 additions & 5 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- AppSwizzle (1.3.1)
- HCaptcha (2.9.2):
- HCaptcha/Core (= 2.9.2)
- HCaptcha/Core (2.9.2)
- HCaptcha/RxSwift (2.9.2):
- HCaptcha (2.9.3):
- HCaptcha/Core (= 2.9.3)
- HCaptcha/Core (2.9.3)
- HCaptcha/RxSwift (2.9.3):
- HCaptcha/Core
- RxSwift (~> 6.2.0)
- RxBlocking (6.2.0):
Expand Down Expand Up @@ -40,7 +40,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
AppSwizzle: db36e436f56110d93e5ae0147683435df593cabc
HCaptcha: 024c1c4cb98a8ee6545910a3819369b69dbd514f
HCaptcha: 4086a1a60511ce75f0c4caae800e972ec680989b
RxBlocking: 0b29f7d2079109a8de49c411381bed7c33ef1eeb
RxCocoa: 4baf94bb35f2c0ab31bc0cb9f1900155f646ba42
RxRelay: e72dbfd157807478401ef1982e1c61c945c94b2f
Expand Down
2 changes: 2 additions & 0 deletions HCaptcha-Carthage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@
F206BB1F1F8D4DBC00A25807 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down Expand Up @@ -562,6 +563,7 @@
F206BB201F8D4DBC00A25807 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down
2 changes: 1 addition & 1 deletion HCaptcha.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HCaptcha'
s.version = '2.9.2'
s.version = '2.9.3'
s.summary = 'HCaptcha for iOS'
s.swift_version = '5.0'

Expand Down
Loading