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
10 changes: 8 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.9
// swift-tools-version:6.0
//
// Package.swift
// SwiftSSDP
Expand All @@ -24,14 +24,20 @@ let package = Package(
targets: [
.target(
name: "SwiftSSDP",
path: "Sources/SwiftSSDP"
path: "Sources/SwiftSSDP",
swiftSettings: [
.swiftLanguageMode(.v6),
]
),
.testTarget(
name: "SwiftSSDPTests",
dependencies: ["SwiftSSDP"],
path: "Tests/SwiftSSDPTests",
resources: [
.copy("Fixtures"),
],
swiftSettings: [
.swiftLanguageMode(.v6),
]
),
]
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SwiftSSDP

![Swift 5.9](https://img.shields.io/badge/swift-5.9-orange.svg?style=for-the-badge&logo=swift)
![Swift 6](https://img.shields.io/badge/swift-6-orange.svg?style=for-the-badge&logo=swift)
![Platforms](https://img.shields.io/badge/platforms-iOS%20%7C%20macOS%20%7C%20tvOS-blue.svg?style=for-the-badge&logo=apple)
[![CI](https://img.shields.io/github/actions/workflow/status/happycodelucky/SwiftSSDP/ci.yml?style=for-the-badge&label=ci)](https://github.com/happycodelucky/SwiftSSDP/actions/workflows/ci.yml)
[![Release](https://img.shields.io/github/v/release/happycodelucky/SwiftSSDP?style=for-the-badge)](https://github.com/happycodelucky/SwiftSSDP/releases/latest)
Expand Down Expand Up @@ -213,10 +213,12 @@ Categories: `discovery`, `transport`, `listener`, `parser`.

## Requirements

- **Swift:** 5.9+
- **Xcode:** 15+
- **Swift:** 6.0+ (Swift 6 language mode with strict concurrency checking)
- **Xcode:** 16+
- **Platforms:** iOS 17, macOS 14, tvOS 17 (watchOS not supported — multicast is unavailable on watchOS)

The library compiles cleanly under `-strict-concurrency=complete -warnings-as-errors`. Public API surface is fully `Sendable` so it composes naturally with actor-isolated callers.

## License

MIT — see [LICENSE](LICENSE).
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftSSDP/SwiftSSDP.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public enum SwiftSSDP {
///
/// > Note: This constant is rewritten by `.github/workflows/release.yml` whenever a
/// > release is published. Do not edit it by hand outside of that workflow.
public static let version = "2.0.0"
public static let version = "2.1.0"
}
Loading