Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e13997a

Browse files
committed
Fix CocoaPods metadata
1 parent 8814b32 commit e13997a

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

β€Ž.swift-versionβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Updates to HTMLString
22

3+
## πŸ”– v4.0.1 β€” 2017-09-20
4+
5+
- Fix CocoaPods metadata
6+
37
## πŸ”– v4.0.0 β€” 2017-09-20
48

59
- Update project for Swift 4

β€ŽHTMLString.podspecβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
Pod::Spec.new do |s|
22
s.name = "HTMLString"
3-
s.version = "4.0.0"
3+
s.version = "4.0.1"
44
s.summary = "Escape and unescape HTML entities in Swift"
55
s.description = <<-DESC
66
HTMLString is a fast library written in Swift that enables your program to add and remove HTML entities in Strings. It supports both ASCII and Unicode. You can use it with 2125 named (`&amp;`), decimal (`&#128;`) and hexadecimal (`&#x1F643;`) entities. It has native support for Swift's Extended Grapheme Clusters. Fully unit tested and documented.
77
DESC
8+
89
s.homepage = "https://github.com/alexaubry/HTMLString"
910
s.license = { :type => "MIT", :file => "LICENSE" }
1011
s.author = { "Alexis Aubry Radanovic" => "[email protected]" }
1112
s.social_media_url = "https://twitter.com/_alexaubry"
13+
1214
s.ios.deployment_target = "8.0"
1315
s.osx.deployment_target = "10.10"
1416
s.watchos.deployment_target = "2.0"
1517
s.tvos.deployment_target = "9.0"
18+
1619
s.source = { :git => "https://github.com/alexaubry/HTMLString.git", :tag => "#{s.version}" }
1720
s.source_files = "Sources/HTMLString/*.swift"
1821
s.documentation_url = "https://alexaubry.github.io/HTMLString/"

0 commit comments

Comments
Β (0)