Skip to content

Commit 7f737d7

Browse files
committed
Podspec update
1 parent 14be308 commit 7f737d7

3 files changed

Lines changed: 17 additions & 9 deletions

File tree

Framework/SoftUI.xcodeproj/project.pbxproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,21 @@
6060
/* End PBXFrameworksBuildPhase section */
6161

6262
/* Begin PBXGroup section */
63+
CA17645C2401645C00770162 /* Frameworks */ = {
64+
isa = PBXGroup;
65+
children = (
66+
);
67+
name = Frameworks;
68+
sourceTree = "<group>";
69+
};
6370
CA249151240016AC00C7465C = {
6471
isa = PBXGroup;
6572
children = (
6673
CA17645A2401597600770162 /* SoftUI.podspec */,
6774
CA24915D240016AC00C7465C /* SoftUI */,
6875
CA249168240016AC00C7465C /* SoftUITests */,
6976
CA24915C240016AC00C7465C /* Products */,
77+
CA17645C2401645C00770162 /* Frameworks */,
7078
);
7179
sourceTree = "<group>";
7280
};
@@ -437,7 +445,7 @@
437445
"@executable_path/Frameworks",
438446
"@loader_path/Frameworks",
439447
);
440-
MARKETING_VERSION = 0.0.2;
448+
MARKETING_VERSION = 0.0.3;
441449
PRODUCT_BUNDLE_IDENTIFIER = com.hellc.SoftUI;
442450
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
443451
SKIP_INSTALL = YES;
@@ -465,7 +473,7 @@
465473
"@executable_path/Frameworks",
466474
"@loader_path/Frameworks",
467475
);
468-
MARKETING_VERSION = 0.0.2;
476+
MARKETING_VERSION = 0.0.3;
469477
PRODUCT_BUNDLE_IDENTIFIER = com.hellc.SoftUI;
470478
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
471479
SKIP_INSTALL = YES;

Framework/SoftUI/Core/Shared/Enums.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
// Copyright © 2020 hellc. All rights reserved.
77
//
88

9-
import Foundation
10-
import CoreGraphics
9+
import UIKit
1110

1211
public enum ShadowType {
1312
case none

SoftUI.podspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Pod::Spec.new do |s|
22

3+
s.swift_versions = '5.0'
34
s.name = 'SoftUI'
4-
s.version = '0.0.2'
5+
s.version = '0.0.3'
56
s.summary = 'Neumorphism design pattern implementation for macOS/iOS/watchOS/tvOS'
67
s.homepage = 'https://github.com/hellc/SoftUI'
78
s.license = 'MIT'
@@ -11,23 +12,23 @@ Pod::Spec.new do |s|
1112
s.requires_arc = false
1213
s.ios.deployment_target = '11.0'
1314
s.tvos.deployment_target = '11.0'
14-
s.osx.deployment_target = '10.15'
1515

1616
s.source = { :git => 'https://github.com/hellc/SoftUI.git', :tag => s.version }
1717

1818
s.default_subspec = 'All'
1919

2020
s.subspec 'All' do |all|
21-
all.dependency 'SoftUI/Core'
22-
all.dependency 'SoftUI/Buttons'
21+
all.dependency 'SoftUI/Core'
22+
all.dependency 'SoftUI/Buttons'
2323
end
2424

2525
s.subspec 'Core' do |core|
2626
core.source_files = 'Framework/SoftUI/Core/**/*.swift'
2727
end
2828

2929
s.subspec 'Buttons' do |buttons|
30+
buttons.dependency 'SoftUI/Core'
3031
buttons.source_files = 'Framework/SoftUI/Controls/Buttons/*.swift'
3132
end
32-
33+
3334
end

0 commit comments

Comments
 (0)