Skip to content

Commit

Permalink
Update Swift version references in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Feb 3, 2024
1 parent ffa4a58 commit e21c18c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The following table maps existing package releases to their minimum required Swi
| Package version | Swift version | Xcode release |
| ----------------------- | ------------- | ------------- |
| swift-collections 1.0.x | >= Swift 5.3 | >= Xcode 12 |
| swift-collections 1.1.x | >= Swift 5.6 | >= Xcode 13.3 |
| swift-collections 1.1.x | >= Swift 5.7 | >= Xcode 13.3 |

(Note: the package has no minimum deployment target, so while it does require clients to use a recent Swift toolchain to build it, the code itself is able to run on any OS release that supports running Swift code.)

Expand All @@ -88,7 +88,7 @@ The following table maps existing package releases to their minimum required Swi
To use this package in a SwiftPM project, you need to set it up as a package dependency:

```swift
// swift-tools-version:5.7
// swift-tools-version:5.9
import PackageDescription

let package = Package(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
/// The tree structure also eliminates the need to reserve capacity in advance:
/// `TreeDictionary` creates, destroys and resizes individual nodes as
/// needed, always consuming just enough memory to store its contents. As of
/// Swift 5.7, the standard collection types never shrink their storage, so
/// Swift 5.9, the standard collection types never shrink their storage, so
/// temporary storage spikes can linger as unused but still allocated memory
/// long after the collection has shrunk back to its usual size.
///
Expand Down
2 changes: 1 addition & 1 deletion Sources/HashTreeCollections/TreeSet/TreeSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
///
/// The tree structure also eliminates the need to reserve capacity in advance:
/// `TreeSet` creates, destroys and resizes individual nodes as needed,
/// always consuming just enough memory to store its contents. As of Swift 5.7,
/// always consuming just enough memory to store its contents. As of Swift 5.9,
/// the standard collection types never shrink their storage, so temporary
/// storage spikes can linger as unused but still allocated memory long after
/// the collection has shrunk back to its usual size.
Expand Down

0 comments on commit e21c18c

Please sign in to comment.