Skip to content

Commit 102f026

Browse files
committed
Fix ReactiveSwift version pinning in Package.swift 🤦
RAS dependency was pointing to a branch named `7.1.0` instead of a *version* named `7.1.0`...
1 parent abd707a commit 102f026

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let package = Package(
2222
],
2323
dependencies: [
2424
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
25-
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift", branch: "7.1.0"),
25+
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift", from: "7.1.0"),
2626
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.8.0"),
2727
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.3.0"),
2828
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "0.3.2"),

0 commit comments

Comments
 (0)