Skip to content

Commit

Permalink
Add Swift 5.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Oct 6, 2021
1 parent 1206f45 commit 22a6996
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 352 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.4
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down
24 changes: 24 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "FFFoundation",
platforms: [
.macOS(.v10_12),
.iOS(.v10),
.tvOS(.v10),
.watchOS(.v3),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(name: "FFFoundation", targets: ["FFFoundation"]),
],
targets: [
.target(name: "FFFoundation"),
.testTarget(
name: "FFFoundationTests",
dependencies: ["FFFoundation"]),
]
)
349 changes: 0 additions & 349 deletions Sources/FFFoundation/AttributedString.swift

This file was deleted.

Loading

0 comments on commit 22a6996

Please sign in to comment.