Skip to content

Commit 8fa596a

Browse files
committed
Port project to Xcode 13.
1 parent 9411a28 commit 8fa596a

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

NumberKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@
539539
"@executable_path/../Frameworks",
540540
"@loader_path/../Frameworks",
541541
);
542-
MACOSX_DEPLOYMENT_TARGET = 10.15;
542+
MACOSX_DEPLOYMENT_TARGET = 11.0;
543543
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.NumberKitTests;
544544
PRODUCT_NAME = "$(TARGET_NAME)";
545545
SWIFT_VERSION = 5.0;
@@ -556,7 +556,7 @@
556556
"@executable_path/../Frameworks",
557557
"@loader_path/../Frameworks",
558558
);
559-
MACOSX_DEPLOYMENT_TARGET = 10.15;
559+
MACOSX_DEPLOYMENT_TARGET = 11.0;
560560
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.NumberKitTests;
561561
PRODUCT_NAME = "$(TARGET_NAME)";
562562
SWIFT_VERSION = 5.0;

Package.swift

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.4
22
//
33
// Package.swift
44
// NumberKit
@@ -45,8 +45,12 @@ let package = Package(
4545
// a test suite. Targets can depend on other targets in this package, and on products
4646
// in packages which this package depends on.
4747
targets: [
48-
.target(name: "NumberKit", dependencies: []),
49-
.testTarget(name: "NumberKitTests", dependencies: ["NumberKit"]),
48+
.target(name: "NumberKit",
49+
dependencies: [],
50+
exclude: ["Info.plist"]),
51+
.testTarget(name: "NumberKitTests",
52+
dependencies: ["NumberKit"],
53+
exclude: ["Info.plist"]),
5054
],
5155

5256
// Required Swift language version.

README.md

Lines changed: 1 addition & 1 deletion
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 5.4](https://img.shields.io/badge/Language-Swift%205.4-green.svg?style=flat)](https://developer.apple.com/swift/) [![IDE: Xcode 12.5](https://img.shields.io/badge/IDE-Xcode%2012.5-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.5](https://img.shields.io/badge/Language-Swift%205.5-green.svg?style=flat)](https://developer.apple.com/swift/) [![IDE: Xcode 13](https://img.shields.io/badge/IDE-Xcode%2013-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

0 commit comments

Comments
 (0)