Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ GitHub issue and pull request templates are included in this repository to keep
Requirements:

- Xcode with Swift 6 toolchain support
- iOS 16+ or macOS 12+ SDKs
- iOS 16+ or macOS 13+ SDKs

To work on the package locally:

Expand Down
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "SwiftUIPlus",
platforms: [.iOS(.v16), .macOS(.v12)],
platforms: [.iOS(.v16), .macOS(.v13)],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
Expand All @@ -16,7 +16,11 @@ let package = Package(
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "SwiftUIPlus"),
name: "SwiftUIPlus",
exclude: [
"AutoSizeLazyVGridForEnum/README.md",
"EqualWidthStacks/README.md"
]),

]
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Current package contents:
## Requirements

- iOS 16+
- macOS 12+
- macOS 13+
- Swift 6 tools

## Installation
Expand Down Expand Up @@ -69,7 +69,7 @@ This package is versioned with Git tags using semantic versioning:
The package manifest is currently:

- library product: `SwiftUIPlus`
- platforms: iOS 16 and macOS 12
- platforms: iOS 16 and macOS 13
- tools version: Swift 6.0

## Contributing
Expand Down
Loading