Skip to content

Commit 960067d

Browse files
authored
Merge pull request #245 from glessard/update-readme-main
Update README
2 parents a067a07 + 3f68d42 commit 960067d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To use the `SystemPackage` library in a SwiftPM project,
3232
add the following line to the dependencies in your `Package.swift` file:
3333

3434
```swift
35-
.package(url: "https://github.com/apple/swift-system", from: "1.4.0"),
35+
.package(url: "https://github.com/apple/swift-system", from: "1.6.0"),
3636
```
3737

3838
Finally, include `"SystemPackage"` as a dependency for your executable target:
@@ -41,7 +41,7 @@ Finally, include `"SystemPackage"` as a dependency for your executable target:
4141
let package = Package(
4242
// name, platforms, products, etc.
4343
dependencies: [
44-
.package(url: "https://github.com/apple/swift-system", from: "1.4.0"),
44+
.package(url: "https://github.com/apple/swift-system", from: "1.6.0"),
4545
// other dependencies
4646
],
4747
targets: [
@@ -87,7 +87,7 @@ The following table maps existing package releases to their minimum required Swi
8787
| Package version | Swift version | Xcode release |
8888
| ----------------------- | --------------- | ------------- |
8989
| swift-system 1.3.x | >= Swift 5.8 | >= Xcode 14.3 |
90-
| swift-system 1.4.x | >= Swift 5.9 | >= Xcode 15.0 |
90+
| swift-system 1.4.x through 1.6.x | >= Swift 5.9 | >= Xcode 15.0 |
9191

9292
We'd like this package to quickly embrace Swift language and toolchain improvements that are relevant to its mandate. Accordingly, from time to time, new versions of this package require clients to upgrade to a more recent Swift toolchain release. (This allows the package to make use of new language/stdlib features, build on compiler bug fixes, and adopt new package manager functionality as soon as they are available.) Patch (i.e., bugfix) releases will not increase the required toolchain version, but any minor (i.e., new feature) release may do so.
9393

@@ -105,11 +105,13 @@ Before contributing, please read [CONTRIBUTING.md](CONTRIBUTING.md).
105105

106106
We maintain separate branches for each active minor version of the package:
107107

108-
| Package version | Branch |
108+
| Package version | Branch |
109109
| ----------------------- | ----------- |
110110
| swift-system 1.3.x | release/1.3 |
111-
| swift-system 1.4.x (unreleased) | release/1.4 |
112-
| swift-system 1.5.x (unreleased) | main |
111+
| swift-system 1.4.x | release/1.4 |
112+
| swift-system 1.5.x | release/1.5 |
113+
| swift-system 1.6.x | release/1.6 |
114+
| swift-system 1.7.x (unreleased) | main |
113115

114116
Changes must land on the branch corresponding to the earliest release that they will need to ship on. They are periodically propagated to subsequent branches, in the following direction:
115117

0 commit comments

Comments
 (0)