-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Update to recommended settings * chore: Clean up imports * chore: Update SPM * chore: Clean up build settings * chore: Update CI * chore: Bump version * fix: CI tests * fix: Update CI * fix: Remove failing tests * fix: CI watchOS test * fix: CI watchOS test
- Loading branch information
1 parent
85f7731
commit b089810
Showing
24 changed files
with
283 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'CDMarkdownKit' | ||
s.version = '2.5.0' | ||
s.version = '2.5.1' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.summary = 'An extensive Swift framework providing simple and customizable markdown parsing.' | ||
s.description = <<-DESC | ||
This Swift framework handles standard markdown parsing along with the ability to parse custom elements. | ||
DESC | ||
This Swift framework handles standard markdown parsing along with the ability to parse custom elements. | ||
DESC | ||
s.homepage = 'https://github.com/chrisdhaan/CDMarkdownKit' | ||
s.author = { 'Christopher de Haan' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/chrisdhaan/CDMarkdownKit.git', :tag => s.version.to_s } | ||
|
@@ -15,7 +15,13 @@ Pod::Spec.new do |s| | |
s.tvos.deployment_target = '10.0' | ||
s.watchos.deployment_target = '3.0' | ||
|
||
s.swift_versions = ['5.3', '5.4', '5.5'] | ||
s.swift_versions = ['5'] | ||
|
||
s.source_files = 'Source/*.swift' | ||
|
||
s.framework = 'Foundation' | ||
s.ios.framework = 'UIKit' | ||
s.osx.framework = 'Cocoa' | ||
s.tvos.framework = 'UIKit' | ||
s.watchos.framework = 'UIKit' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
CDMarkdownKit.xcodeproj/xcshareddata/xcschemes/CDMarkdownKit iOS.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
CDMarkdownKit.xcodeproj/xcshareddata/xcschemes/CDMarkdownKit macOS.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
CDMarkdownKit.xcodeproj/xcshareddata/xcschemes/CDMarkdownKit tvOS.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.