Skip to content

Commit f133659

Browse files
committed
fix errors, up version
1 parent fc06466 commit f133659

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

Package.swift

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ let package = Package(
1515
.target(
1616
name: "appendAttributedString",
1717
dependencies: [],
18-
path: "appendAttributedString/appendAttributedString"),
19-
.testTarget(
20-
name: "appendAttributedStringTests",
21-
dependencies: ["appendAttributedString"],
22-
path: "appendAttributedString/appendAttributedStringTests")
18+
path: "appendAttributedString/appendAttributedString")
2319
]
2420
)

appendAttributedString.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "appendAttributedString"
3-
s.version = "1.2"
3+
s.version = "1.2.0.1"
44
s.summary = "An extension for NSMutableAttributedString"
55

66
s.description = <<-DESC
@@ -14,7 +14,7 @@ Supports dynamic fonts, colors, underlines, strike through, images and you can c
1414
s.author = { "Yaroslav Erohin" => "[email protected]" }
1515
s.platform = :ios, "8.0"
1616
s.swift_version = "5"
17-
s.source = { :git => "https://github.com/ysoftware/appendAttributedString.git", :tag => "1.2" }
17+
s.source = { :git => "https://github.com/ysoftware/appendAttributedString.git", :tag => "1.2.0.1" }
1818
s.exclude_files = "appendAttributedString/appendAttributedStringTests"
1919
s.source_files = "appendAttributedString/**/*.{h,m,swift}"
2020
end

appendAttributedString/appendAttributedString.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
"@executable_path/Frameworks",
298298
"@loader_path/Frameworks",
299299
);
300-
MARKETING_VERSION = 1.2;
300+
MARKETING_VERSION = 1.2.0.1;
301301
PRODUCT_BUNDLE_IDENTIFIER = com.ysoftware.appendAttributedString;
302302
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
303303
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -326,7 +326,7 @@
326326
"@executable_path/Frameworks",
327327
"@loader_path/Frameworks",
328328
);
329-
MARKETING_VERSION = 1.2;
329+
MARKETING_VERSION = 1.2.0.1;
330330
PRODUCT_BUNDLE_IDENTIFIER = com.ysoftware.appendAttributedString;
331331
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
332332
PROVISIONING_PROFILE_SPECIFIER = "";

appendAttributedString/appendAttributedString/DynamicFonts.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015 Yaroslav Erohin. All rights reserved.
77
//
88

9-
import Foundation
9+
import UIKit
1010

1111
public extension NSMutableAttributedString {
1212

appendAttributedString/appendAttributedString/ParagraphStyle.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2017 Yaroslav Erohin. All rights reserved.
77
//
88

9-
import Foundation
9+
import UIKit
1010

1111
public extension AttributesBuilder {
1212

0 commit comments

Comments
 (0)