Skip to content

Commit

Permalink
Bump deployment target to keep Xcode 12 happy (MarqueeLabel 4.0.x sti…
Browse files Browse the repository at this point in the history
…ll works with iOS 8 though!)
  • Loading branch information
cbpowell committed Oct 6, 2020
1 parent 549c74b commit 9d84d70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MarqueeLabel.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MarqueeLabel"
s.version = "4.0.2"
s.version = "4.0.4"
s.summary = "A drop-in replacement for UILabel, which automatically adds a scrolling marquee effect when needed."
s.homepage = "https://github.com/cbpowell/MarqueeLabel"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.frameworks = 'UIKit', 'QuartzCore'
s.requires_arc = true
s.source_files = 'Sources/*.swift'
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'
end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "MarqueeLabel",
platforms: [
.iOS(.v8),
.iOS(.v9),
.tvOS(.v9)
],
products: [
Expand Down

0 comments on commit 9d84d70

Please sign in to comment.