Skip to content

Commit ebfea52

Browse files
committed
빌드타겟 변경
1 parent 9dd6447 commit ebfea52

5 files changed

Lines changed: 16 additions & 20 deletions

File tree

FlexibleModelProtocol.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
Pod::Spec.new do |spec|
44

55
spec.name = "FlexibleModelProtocol"
6-
spec.version = "1.1.3"
6+
spec.version = "1.1.4"
77
spec.license = 'MIT'
88
spec.summary = "Model protocol with flexible, diverse types of conversion"
99
spec.homepage = "https://github.com/HanweeeeLee/FlexibleModelProtocol"
1010
spec.author = { "hanwe lee" => "[email protected]" }
11-
spec.source = { :git => "https://github.com/HanweeeeLee/FlexibleModelProtocol.git", :tag => "1.1.3" }
11+
spec.source = { :git => "https://github.com/HanweeeeLee/FlexibleModelProtocol.git", :tag => "1.1.4" }
1212

1313
spec.platform = :ios, "11.0"
14-
spec.osx.deployment_target = '10.12'
15-
spec.tvos.deployment_target = '10.0'
16-
spec.watchos.deployment_target = '3.0'
14+
spec.osx.deployment_target = '10.13'
15+
spec.tvos.deployment_target = '11.0'
16+
spec.watchos.deployment_target = '4.0'
1717

1818
spec.swift_version = '5.0'
1919

FlexibleModelProtocol/FlexibleModelProtocol.xcodeproj/project.pbxproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -314,17 +314,17 @@
314314
GCC_WARN_UNUSED_FUNCTION = YES;
315315
GCC_WARN_UNUSED_VARIABLE = YES;
316316
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
317-
MACOSX_DEPLOYMENT_TARGET = 10.12;
317+
MACOSX_DEPLOYMENT_TARGET = 10.13;
318318
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
319319
MTL_FAST_MATH = YES;
320320
ONLY_ACTIVE_ARCH = YES;
321321
SDKROOT = iphoneos;
322322
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
323323
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
324-
TVOS_DEPLOYMENT_TARGET = 10.0;
324+
TVOS_DEPLOYMENT_TARGET = 11.0;
325325
VERSIONING_SYSTEM = "apple-generic";
326326
VERSION_INFO_PREFIX = "";
327-
WATCHOS_DEPLOYMENT_TARGET = 3.0;
327+
WATCHOS_DEPLOYMENT_TARGET = 4.0;
328328
};
329329
name = Debug;
330330
};
@@ -375,17 +375,17 @@
375375
GCC_WARN_UNUSED_FUNCTION = YES;
376376
GCC_WARN_UNUSED_VARIABLE = YES;
377377
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
378-
MACOSX_DEPLOYMENT_TARGET = 10.12;
378+
MACOSX_DEPLOYMENT_TARGET = 10.13;
379379
MTL_ENABLE_DEBUG_INFO = NO;
380380
MTL_FAST_MATH = YES;
381381
SDKROOT = iphoneos;
382382
SWIFT_COMPILATION_MODE = wholemodule;
383383
SWIFT_OPTIMIZATION_LEVEL = "-O";
384-
TVOS_DEPLOYMENT_TARGET = 10.0;
384+
TVOS_DEPLOYMENT_TARGET = 11.0;
385385
VALIDATE_PRODUCT = YES;
386386
VERSIONING_SYSTEM = "apple-generic";
387387
VERSION_INFO_PREFIX = "";
388-
WATCHOS_DEPLOYMENT_TARGET = 3.0;
388+
WATCHOS_DEPLOYMENT_TARGET = 4.0;
389389
};
390390
name = Release;
391391
};
@@ -394,7 +394,7 @@
394394
buildSettings = {
395395
CLANG_ENABLE_MODULES = YES;
396396
CODE_SIGN_STYLE = Automatic;
397-
CURRENT_PROJECT_VERSION = 5;
397+
CURRENT_PROJECT_VERSION = 6;
398398
DEFINES_MODULE = YES;
399399
DEVELOPMENT_TEAM = P4ZJYAK634;
400400
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -407,7 +407,7 @@
407407
"@executable_path/Frameworks",
408408
"@loader_path/Frameworks",
409409
);
410-
MARKETING_VERSION = 1.1.3;
410+
MARKETING_VERSION = 1.1.4;
411411
PRODUCT_BUNDLE_IDENTIFIER = com.hanwe.FlexibleModelProtocol;
412412
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
413413
SKIP_INSTALL = YES;
@@ -422,7 +422,7 @@
422422
buildSettings = {
423423
CLANG_ENABLE_MODULES = YES;
424424
CODE_SIGN_STYLE = Automatic;
425-
CURRENT_PROJECT_VERSION = 5;
425+
CURRENT_PROJECT_VERSION = 6;
426426
DEFINES_MODULE = YES;
427427
DEVELOPMENT_TEAM = P4ZJYAK634;
428428
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -435,7 +435,7 @@
435435
"@executable_path/Frameworks",
436436
"@loader_path/Frameworks",
437437
);
438-
MARKETING_VERSION = 1.1.3;
438+
MARKETING_VERSION = 1.1.4;
439439
PRODUCT_BUNDLE_IDENTIFIER = com.hanwe.FlexibleModelProtocol;
440440
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
441441
SKIP_INSTALL = YES;

FlexibleModelProtocol/FlexibleModelProtocol/FlexibleModelProtocol.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// e-mail : [email protected]
88
//
99

10-
import UIKit
11-
1210
public protocol FlexibleModelProtocol: Codable, Equatable {
1311

1412
static func fromJson<T: FlexibleModelProtocol>(jsonData: Data?,object: T) -> T?

FlexibleModelProtocol/FlexibleModelProtocol/HWXMLEelement.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by hanwe lee on 2020/10/13.
66
//
77

8-
import UIKit
9-
108
public class HWXMLEelement: NSObject {
119

1210
internal weak var parentsElement: HWXMLEelement?

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Model protocol with flexible, diverse types of conversion
55

66
## Requirements
77

8-
- iOS 11.0+ / macOS 10.12+ / tvOS 10.0+ / watchOS 3.0+
8+
- iOS 11.0+ / macOS 10.13+ / tvOS 11.0+ / watchOS 4.0+
99
- Xcode 11+
1010
- Swift 5.0+
1111

0 commit comments

Comments
 (0)