File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
Sources/MarkdownKit/AttributedString Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.2 (2020-10-04)
4
+ - Improved extensibility of ` AttributedStringGenerator ` class
5
+
3
6
## 1.0.1 (2020-10-04)
4
7
- Ported to Swift 5.3
5
8
- Migrated project to Xcode 12.0
Original file line number Diff line number Diff line change 615
615
"@executable_path/../Frameworks",
616
616
"@loader_path/Frameworks",
617
617
);
618
- MARKETING_VERSION = 1.0.1 ;
618
+ MARKETING_VERSION = 1.0.2 ;
619
619
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.MarkdownKit;
620
620
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
621
621
SKIP_INSTALL = YES;
644
644
"@executable_path/../Frameworks",
645
645
"@loader_path/Frameworks",
646
646
);
647
- MARKETING_VERSION = 1.0.1 ;
647
+ MARKETING_VERSION = 1.0.2 ;
648
648
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.MarkdownKit;
649
649
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
650
650
SKIP_INSTALL = YES;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ open class AttributedStringGenerator {
33
33
open class InternalHtmlGenerator : HtmlGenerator {
34
34
weak var outer : AttributedStringGenerator ?
35
35
36
- init ( outer: AttributedStringGenerator ) {
36
+ public init ( outer: AttributedStringGenerator ) {
37
37
self . outer = outer
38
38
}
39
39
@@ -212,7 +212,7 @@ open class AttributedStringGenerator {
212
212
documentAttributes: nil )
213
213
}
214
214
215
- public var htmlGenerator : HtmlGenerator {
215
+ open var htmlGenerator : HtmlGenerator {
216
216
return InternalHtmlGenerator ( outer: self )
217
217
}
218
218
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >BNDL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >1.0.1 </string >
18
+ <string >1.0.2 </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >1 </string >
21
21
</dict >
You can’t perform that action at this time.
0 commit comments