From 3f29ee4bb0516fc5fc801b8484845fd632c6d2c3 Mon Sep 17 00:00:00 2001 From: Diogo Autilio Date: Tue, 28 Oct 2025 18:54:06 -0300 Subject: [PATCH] fix: remove hyphens from product name for better SPM/device compatibility --- Package.swift | 8 ++++---- SCLAlertView-Objective-C.podspec | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Package.swift b/Package.swift index 5e1b66d..d7583bf 100644 --- a/Package.swift +++ b/Package.swift @@ -2,20 +2,20 @@ import PackageDescription let package = Package( - name: "SCLAlertView-Objective-C", + name: "SCLAlertViewObjC", platforms: [ .iOS(.v12) ], products: [ .library( - name: "SCLAlertView-Objective-C", + name: "SCLAlertViewObjC", type: .dynamic, - targets: ["SCLAlertView-Objective-C"] + targets: ["SCLAlertViewObjC"] ) ], targets: [ .target( - name: "SCLAlertView-Objective-C", + name: "SCLAlertViewObjC", path: "SCLAlertView", publicHeadersPath: ".", cSettings: [ diff --git a/SCLAlertView-Objective-C.podspec b/SCLAlertView-Objective-C.podspec index 55667ad..b0a27bf 100644 --- a/SCLAlertView-Objective-C.podspec +++ b/SCLAlertView-Objective-C.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "SCLAlertView-Objective-C" - spec.version = "1.4.0" + spec.version = "1.4.1" spec.summary = "Beautiful animated Alert View. Written in Swift but ported to Objective-C" spec.homepage = "https://github.com/dogo/SCLAlertView" spec.screenshots = "https://raw.githubusercontent.com/dogo/SCLAlertView/master/ScreenShots/ScreenShot.png", "https://raw.githubusercontent.com/dogo/SCLAlertView/master/ScreenShots/ScreenShot2.png"