Skip to content

Commit b95c2ae

Browse files
committed
Port project to Xcode 13.
1 parent e3b0791 commit b95c2ae

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

MarkdownKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@
807807
"@executable_path/../Frameworks",
808808
"@loader_path/../Frameworks",
809809
);
810-
MACOSX_DEPLOYMENT_TARGET = 10.15;
810+
MACOSX_DEPLOYMENT_TARGET = 11.0;
811811
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.MarkdownKitTests;
812812
PRODUCT_NAME = "$(TARGET_NAME)";
813813
SWIFT_VERSION = 5.0;
@@ -827,7 +827,7 @@
827827
"@executable_path/../Frameworks",
828828
"@loader_path/../Frameworks",
829829
);
830-
MACOSX_DEPLOYMENT_TARGET = 10.15;
830+
MACOSX_DEPLOYMENT_TARGET = 11.0;
831831
PRODUCT_BUNDLE_IDENTIFIER = net.objecthub.MarkdownKitTests;
832832
PRODUCT_NAME = "$(TARGET_NAME)";
833833
SWIFT_VERSION = 5.0;

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.4
22
//
33
// Package.swift
44
// MarkdownKit
@@ -46,9 +46,9 @@ let package = Package(
4646
.target(name: "MarkdownKit",
4747
dependencies: [],
4848
exclude: ["Info.plist"]),
49-
.target(name: "MarkdownKitProcess",
50-
dependencies: ["MarkdownKit"],
51-
exclude: []),
49+
.executableTarget(name: "MarkdownKitProcess",
50+
dependencies: ["MarkdownKit"],
51+
exclude: []),
5252
.testTarget(name: "MarkdownKitTests",
5353
dependencies: ["MarkdownKit"],
5454
exclude: ["Info.plist"])

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<p>
44
<a href="https://developer.apple.com/osx/"><img src="https://img.shields.io/badge/Platform-macOS%20%7C%20iOS%20%7C%20Linux-blue.svg?style=flat" alt="Platform: macOS | iOS | Linux" /></a>
5-
<a href="https://developer.apple.com/swift/"><img src="https://img.shields.io/badge/Language-Swift%205.4-green.svg?style=flat" alt="Language: Swift 5.4" /></a>
6-
<a href="https://developer.apple.com/xcode/"><img src="https://img.shields.io/badge/IDE-Xcode%2012.5-orange.svg?style=flat" alt="IDE: Xcode 12.5" /></a>
5+
<a href="https://developer.apple.com/swift/"><img src="https://img.shields.io/badge/Language-Swift%205.5-green.svg?style=flat" alt="Language: Swift 5.5" /></a>
6+
<a href="https://developer.apple.com/xcode/"><img src="https://img.shields.io/badge/IDE-Xcode%2013-orange.svg?style=flat" alt="IDE: Xcode 13" /></a>
77
<a href="https://raw.githubusercontent.com/objecthub/swift-markdownkit/master/LICENSE"><img src="http://img.shields.io/badge/License-Apache-lightgrey.svg?style=flat" alt="License: Apache" /></a>
88
</p>
99

@@ -369,8 +369,8 @@ The command-line tool can be compiled with the _Swift Package Manager_, so _Xcod
369369
for that. Similarly, just for compiling the framework and trying the command-line tool in _Xcode_, the
370370
_Swift Package Manager_ is not needed.
371371

372-
- [Xcode 12.5](https://developer.apple.com/xcode/)
373-
- [Swift 5.4](https://developer.apple.com/swift/)
372+
- [Xcode 13](https://developer.apple.com/xcode/)
373+
- [Swift 5.5](https://developer.apple.com/swift/)
374374
- [Swift Package Manager](https://swift.org/package-manager/)
375375

376376
## Copyright

0 commit comments

Comments
 (0)