Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bmoliveira committed Jan 31, 2019
1 parent 28e47b2 commit 753d109
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions MarkdownKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MarkdownKit"
s.version = "1.4.1"
s.version = "1.5"
s.summary = "MarkdownKit is a customizable and extensible Markdown parser for iOS."
s.description = <<-DESC
MarkdownKit is a customizable and extensible Markdown parser for iOS.
Expand All @@ -15,8 +15,14 @@ all the Markdown elements.
s.source = {:git => "https://github.com/bmoliveira/MarkdownKit.git", :tag => s.version.to_s}
s.social_media_url = "https://twitter.com/ivanbruel"

s.source_files = "MarkdownKit/Sources/Common/**/*"

s.ios.deployment_target = "9.0"
s.ios.source_files = "MarkdownKit/Sources/UIKit/**/*"
s.ios.frameworks = "UIKit"

s.osx.deployment_target = '10.10'
s.osx.source_files = "MarkdownKit/Sources/AppKit/**/*"
s.osx.framework = 'AppKit'

s.source_files = "MarkdownKit/Sources/**/*"
s.frameworks = "UIKit"
end

0 comments on commit 753d109

Please sign in to comment.