Skip to content

Commit da541bd

Browse files
committed
Migrate project to Xcode 12.
1 parent a29903f commit da541bd

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

NumberKit.xcodeproj/project.pbxproj

+9-5
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
isa = PBXProject;
247247
attributes = {
248248
LastSwiftUpdateCheck = 0700;
249-
LastUpgradeCheck = 1020;
249+
LastUpgradeCheck = 1200;
250250
ORGANIZATIONNAME = ObjectHub;
251251
TargetAttributes = {
252252
CC99F54E1B7AA6E200355E1E = {
@@ -381,6 +381,7 @@
381381
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
382382
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
383383
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
384+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
384385
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
385386
CLANG_WARN_STRICT_PROTOTYPES = YES;
386387
CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -405,7 +406,7 @@
405406
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
406407
GCC_WARN_UNUSED_FUNCTION = YES;
407408
GCC_WARN_UNUSED_VARIABLE = YES;
408-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
409+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
409410
MACOSX_DEPLOYMENT_TARGET = 10.12;
410411
MTL_ENABLE_DEBUG_INFO = YES;
411412
ONLY_ACTIVE_ARCH = YES;
@@ -442,6 +443,7 @@
442443
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
443444
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
444445
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
446+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
445447
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
446448
CLANG_WARN_STRICT_PROTOTYPES = YES;
447449
CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -460,7 +462,7 @@
460462
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
461463
GCC_WARN_UNUSED_FUNCTION = YES;
462464
GCC_WARN_UNUSED_VARIABLE = YES;
463-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
465+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
464466
MACOSX_DEPLOYMENT_TARGET = 10.12;
465467
MTL_ENABLE_DEBUG_INFO = NO;
466468
SDKROOT = macosx;
@@ -537,6 +539,7 @@
537539
"@executable_path/../Frameworks",
538540
"@loader_path/../Frameworks",
539541
);
542+
MACOSX_DEPLOYMENT_TARGET = 10.15;
540543
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.NumberKitTests;
541544
PRODUCT_NAME = "$(TARGET_NAME)";
542545
SWIFT_VERSION = 5.0;
@@ -553,6 +556,7 @@
553556
"@executable_path/../Frameworks",
554557
"@loader_path/../Frameworks",
555558
);
559+
MACOSX_DEPLOYMENT_TARGET = 10.15;
556560
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.NumberKitTests;
557561
PRODUCT_NAME = "$(TARGET_NAME)";
558562
SWIFT_VERSION = 5.0;
@@ -578,7 +582,7 @@
578582
GCC_C_LANGUAGE_STANDARD = gnu11;
579583
INFOPLIST_FILE = "Sources/NumberKit iOS/Info.plist";
580584
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
581-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
585+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
582586
LD_RUNPATH_SEARCH_PATHS = (
583587
"$(inherited)",
584588
"@executable_path/Frameworks",
@@ -617,7 +621,7 @@
617621
GCC_C_LANGUAGE_STANDARD = gnu11;
618622
INFOPLIST_FILE = "Sources/NumberKit iOS/Info.plist";
619623
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
620-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
624+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
621625
LD_RUNPATH_SEARCH_PATHS = (
622626
"$(inherited)",
623627
"@executable_path/Frameworks",

NumberKit.xcodeproj/xcshareddata/xcschemes/NumberKit iOS.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1130"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

NumberKit.xcodeproj/xcshareddata/xcschemes/NumberKit.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let package = Package(
2727
// Platforms define the operating systems for which this library can be compiled for.
2828
platforms: [
2929
.macOS(.v10_12),
30-
.iOS(.v11),
30+
.iOS(.v12),
3131
],
3232

3333
// Products define the executables and libraries produced by a package, and make them visible

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Swift NumberKit
22

3-
[![Platforms: macOS, iOS, Linux](https://img.shields.io/badge/Platforms-macOS,%20iOS,%20Linux-blue.svg?style=flat)](https://developer.apple.com/osx/) [![Language: Swift](https://img.shields.io/badge/Language-Swift%205.2-green.svg?style=flat)](https://developer.apple.com/swift/) [![IDE: Xcode 11.4](https://img.shields.io/badge/IDE-Xcode%2011.4-orange.svg?style=flat)](https://developer.apple.com/xcode/) [![Package managers: SwiftPM, Carthage](https://img.shields.io/badge/Package%20managers-SwiftPM,%20Carthage-8E64B0.svg?style=flat)](https://github.com/Carthage/Carthage) [![License: Apache](http://img.shields.io/badge/License-Apache-lightgrey.svg?style=flat)](https://raw.githubusercontent.com/objecthub/swift-numberkit/master/LICENSE)
3+
[![Platforms: macOS, iOS, Linux](https://img.shields.io/badge/Platforms-macOS,%20iOS,%20Linux-blue.svg?style=flat)](https://developer.apple.com/osx/) [![Language: Swift 5.3](https://img.shields.io/badge/Language-Swift%205.3-green.svg?style=flat)](https://developer.apple.com/swift/) [![IDE: Xcode 12.0](https://img.shields.io/badge/IDE-Xcode%2012.0-orange.svg?style=flat)](https://developer.apple.com/xcode/) [![Package managers: SwiftPM, Carthage](https://img.shields.io/badge/Package%20managers-SwiftPM,%20Carthage-8E64B0.svg?style=flat)](https://github.com/Carthage/Carthage) [![License: Apache](http://img.shields.io/badge/License-Apache-lightgrey.svg?style=flat)](https://raw.githubusercontent.com/objecthub/swift-numberkit/master/LICENSE)
44

55
## Overview
66

@@ -47,8 +47,8 @@ where _i_ is the _imaginary unit_.
4747

4848
The following technologies are needed to build the components of the _Swift NumberKit_ framework:
4949

50-
- [Xcode 11.4](https://developer.apple.com/xcode/)
51-
- [Swift 5.2](https://developer.apple.com/swift/)
50+
- [Xcode 12.0](https://developer.apple.com/xcode/)
51+
- [Swift 5.3](https://developer.apple.com/swift/)
5252
- [Swift Package Manager](https://swift.org/package-manager/)
5353
- macOS or Linux
5454

0 commit comments

Comments
 (0)