Skip to content

Commit d994cf1

Browse files
committed
Bumped version to 3.5.1
1 parent 13eb14a commit d994cf1

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

OHAttributedLabel.podspec

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
Pod::Spec.new do |s|
22
s.name = 'OHAttributedLabel'
3-
s.version = '3.5.0'
3+
s.version = '3.5.1'
44
s.license = {:type => 'MIT', :file => 'OHAttributedLabel/LICENSE'}
5+
s.platform = :ios
56
s.summary = 'UILabel that supports NSAttributedString.'
7+
s.description = <<-DESC
8+
This class allows you to use a `UILabel` with `NSAttributedStrings`, in order
9+
to display styled text with mixed style (mixed fonts, color, size, ...)
10+
in a unique label.
11+
It also provides a `NSAttributedString` category with a lot of commodity methods
12+
to change its various style & fonts, and some easy to use parsers to build
13+
your complex `NSAttributedStrings` (containing various/mixed styles) very easily.
14+
DESC
15+
616
s.homepage = 'https://github.com/AliSoftware/OHAttributedLabel'
717
s.author = { 'AliSoftware' => 'olivier.halligon+ae@gmail.com' }
818
s.source = { :git => 'https://github.com/AliSoftware/OHAttributedLabel.git', :tag => s.version.to_s }
9-
s.description = 'This class allows you to use a `UILabel` with `NSAttributedStrings`, in order to display styled text with mixed style (mixed fonts, color, size, ...) in a unique label.
10-
It also provides a `NSAttributedString` category with a lot of commodity methods to change its various style & fonts, and some easy to use parsers to build your complex `NSAttributedStrings` (containing various/mixed styles) very easily.'
11-
s.platform = :ios
12-
s.source_files = 'OHAttributedLabel/**/*.{h,m}'
19+
20+
s.source_files = 'OHAttributedLabel/Source/*.{h,m}', 'OHAttributedLabel/PrivateUtils/*.{h,m}', 'OHAttributedLabel/TagParsers/*.{h,m}'
21+
s.public_header_files = 'OHAttributedLabel/Source/*.h', 'OHAttributedLabel/TagParsers/*.h'
22+
1323
s.framework = 'CoreText'
1424
s.requires_arc = true
1525
end

0 commit comments

Comments
 (0)