From 6ddbd63bd60c6e36b54fc1664e88409b77972cbf Mon Sep 17 00:00:00 2001 From: Arthur Ariel Sabintsev Date: Sun, 15 Sep 2019 00:28:21 -0400 Subject: [PATCH] Xcode 11 / iOS 13 / Swift 5.1 Support (#34) * Updated Package.swift * Updated metadata * Removed .build folder --- FontBlaster.podspec | 4 ++-- Package.swift | 2 +- README.md | 8 +++++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/FontBlaster.podspec b/FontBlaster.podspec index f746d2f..2adabcf 100755 --- a/FontBlaster.podspec +++ b/FontBlaster.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| # Version -s.version = "5.0.1" -s.swift_version = "5.0" +s.version = "5.1.0" +s.swift_version = "5.1" # Meta s.name = "FontBlaster" diff --git a/Package.swift b/Package.swift index 403f8c5..78ee65a 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.0 +// swift-tools-version:5.1 import PackageDescription let package = Package( diff --git a/README.md b/README.md index abbbbf4..5b40448 100755 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Say goodbye to importing custom fonts via property lists as **FontBlaster** auto | Swift Version | Branch Name | Will Continue to Receive Updates? | ------------- | ------------- | ------------- | 5.1 | swift5.1 | **Yes** -| 5.0 | master | **Yes** +| 5.0 | swift5.0 | No | 4.2 | swift4.2 | No | 4.1 | swift4.1 | No | 3.2 | swift3.2 | No @@ -32,7 +32,8 @@ Say goodbye to importing custom fonts via property lists as **FontBlaster** auto ### CocoaPods ```ruby -pod 'FontBlaster' # Swift 5.0 +pod 'FontBlaster' # Swift 5.1 +pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift5.0' # Swift 5.0 pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift4.2' # Swift 4.2 pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift4.1' # Swift 4.1 pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift3.2' # Swift 3.2 @@ -41,7 +42,8 @@ pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :b ### Carthage ```swift -github "ArtSabintsev/FontBlaster" // Swift 5.0 +github "ArtSabintsev/FontBlaster" // Swift 5.1 +github "ArtSabintsev/FontBlaster" "swift5.0" // Swift 5.0 github "ArtSabintsev/FontBlaster" "swift4.2" // Swift 4.2 github "ArtSabintsev/FontBlaster" "swift4.1" // Swift 4.1 github "ArtSabintsev/FontBlaster" "swift3.2" // Swift 3.2