Skip to content

Commit 3f29ee4

Browse files
committed
fix: remove hyphens from product name for better SPM/device compatibility
1 parent a175d5c commit 3f29ee4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
import PackageDescription
33

44
let package = Package(
5-
name: "SCLAlertView-Objective-C",
5+
name: "SCLAlertViewObjC",
66
platforms: [
77
.iOS(.v12)
88
],
99
products: [
1010
.library(
11-
name: "SCLAlertView-Objective-C",
11+
name: "SCLAlertViewObjC",
1212
type: .dynamic,
13-
targets: ["SCLAlertView-Objective-C"]
13+
targets: ["SCLAlertViewObjC"]
1414
)
1515
],
1616
targets: [
1717
.target(
18-
name: "SCLAlertView-Objective-C",
18+
name: "SCLAlertViewObjC",
1919
path: "SCLAlertView",
2020
publicHeadersPath: ".",
2121
cSettings: [

SCLAlertView-Objective-C.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "SCLAlertView-Objective-C"
3-
spec.version = "1.4.0"
3+
spec.version = "1.4.1"
44
spec.summary = "Beautiful animated Alert View. Written in Swift but ported to Objective-C"
55
spec.homepage = "https://github.com/dogo/SCLAlertView"
66
spec.screenshots = "https://raw.githubusercontent.com/dogo/SCLAlertView/master/ScreenShots/ScreenShot.png", "https://raw.githubusercontent.com/dogo/SCLAlertView/master/ScreenShots/ScreenShot2.png"

0 commit comments

Comments
 (0)