Skip to content

Commit

Permalink
Swift 6
Browse files Browse the repository at this point in the history
Swift 6 and .iOS(.v18), .macOS(.v15), .tvOS(.v18), .watchOS(.v11)
  • Loading branch information
Appracatappra committed Jun 12, 2024
1 parent 5212a08 commit 5ce442c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 14 deletions.
15 changes: 8 additions & 7 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
{
"originHash" : "41682aa757b18c8b10c59952851213b5751b796cc0e74fb6ce58e9e798bdd784",
"pins" : [
{
"identity" : "logmanager",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Appracatappra/LogManager",
"state" : {
"revision" : "bc21e80add4315c28e9461b8f583cfd79e4c74f8",
"version" : "1.0.3"
"revision" : "bf916fa61fd3d3f006bcede8e9ca2d4910279478",
"version" : "2.0.0"
}
},
{
"identity" : "soundmanager",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Appracatappra/SoundManager",
"state" : {
"revision" : "04a17d306bea71729877696fa16a55cfb84f8e1a",
"version" : "1.0.3"
"revision" : "6e73b374abdd9858a873fa72a89e5e09b0ffb4c8",
"version" : "2.0.0"
}
},
{
"identity" : "swiftletutilities",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Appracatappra/SwiftletUtilities",
"state" : {
"revision" : "35b92f3d0e5ea66ef3254dd1e812cdc8e61c3578",
"version" : "1.1.13"
"revision" : "a587162e03f9af3d474535100f89d8db64b82345",
"version" : "2.0.0"
}
}
],
"version" : 2
"version" : 3
}
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// swift-tools-version: 5.9
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SwiftUIKit",
platforms: [.iOS(.v17), .macOS(.v14), .tvOS(.v17), .watchOS(.v10)],
platforms: [.iOS(.v18), .macOS(.v15), .tvOS(.v18), .watchOS(.v11)],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
Expand All @@ -15,9 +15,9 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/Appracatappra/LogManager", .upToNextMajor(from: "1.0.1")),
.package(url: "https://github.com/Appracatappra/SwiftletUtilities", .upToNextMajor(from: "1.1.1")),
.package(url: "https://github.com/Appracatappra/SoundManager", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Appracatappra/LogManager", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/Appracatappra/SwiftletUtilities", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/Appracatappra/SoundManager", .upToNextMajor(from: "2.0.0")),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SwiftUIKit

![](https://img.shields.io/badge/license-MIT-green) ![](https://img.shields.io/badge/maintained%3F-Yes-green) ![](https://img.shields.io/badge/swift-5.4-green) ![](https://img.shields.io/badge/iOS-17.0-red) ![](https://img.shields.io/badge/macOS-14.0-red) ![](https://img.shields.io/badge/tvOS-17.0-red) ![](https://img.shields.io/badge/watchOS-10.0-red) ![](https://img.shields.io/badge/dependency-LogManager-orange) ![](https://img.shields.io/badge/dependency-SoundManager-orange) ![](https://img.shields.io/badge/dependency-SwiftletUtilities-orange)
![](https://img.shields.io/badge/license-MIT-green) ![](https://img.shields.io/badge/maintained%3F-Yes-green) ![](https://img.shields.io/badge/swift-6.0-green) ![](https://img.shields.io/badge/iOS-18.0-red) ![](https://img.shields.io/badge/macOS-15.0-red) ![](https://img.shields.io/badge/tvOS-18.0-red) ![](https://img.shields.io/badge/watchOS-11.0-red) ![](https://img.shields.io/badge/dependency-LogManager-orange) ![](https://img.shields.io/badge/dependency-SoundManager-orange) ![](https://img.shields.io/badge/dependency-SwiftletUtilities-orange)

`SwiftUIKit` provides a collection of common controls for use with `SwiftUI`.

Expand Down Expand Up @@ -161,4 +161,4 @@ With this code in place, make any style changes in `func application(_ applicati

# Documentation

The **Package** includes full **DocC Documentation** for all of its features.
The **Package** includes full **DocC Documentation** for all of its features.
8 changes: 8 additions & 0 deletions Sources/SwiftUIKit/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
</dict>
</plist>

0 comments on commit 5ce442c

Please sign in to comment.