diff --git a/.swiftpm/configuration/Package.resolved b/.swiftpm/configuration/Package.resolved new file mode 100644 index 0000000..d572e03 --- /dev/null +++ b/.swiftpm/configuration/Package.resolved @@ -0,0 +1,24 @@ +{ + "originHash" : "db0939bfcff17f77ea9eb9dc37e55caa295f4878b93f9eaf156720c118c15c0f", + "pins" : [ + { + "identity" : "swift-docc-plugin", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-plugin", + "state" : { + "revision" : "26ac5758409154cc448d7ab82389c520fa8a8247", + "version" : "1.3.0" + } + }, + { + "identity" : "swift-docc-symbolkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-symbolkit", + "state" : { + "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34", + "version" : "1.0.0" + } + } + ], + "version" : 3 +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 94a502e..6405a2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.5] - 2024-08-07 + +### Changed +- Non-breaking changes to public imports when compiling under Swift 6. + ## [3.0.4] - 2024-07-01 ### Changed diff --git a/Sources/Subprocess/Errors.swift b/Sources/Subprocess/Errors.swift index 995ef5c..3228cdd 100644 --- a/Sources/Subprocess/Errors.swift +++ b/Sources/Subprocess/Errors.swift @@ -25,7 +25,11 @@ // SOFTWARE. // +#if swift(>=6) +public import Foundation +#else import Foundation +#endif /// Type representing possible errors @available(*, deprecated, message: "This type is no longer used with non-deprecated methods")