You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please help prevent duplicate issues before submitting a new one:
I've searched other open/closed issues for duplicates before opening up this new issue.
Report
What did you do?
The Cartfile of my project used to have the line:
github "iwasrobbed/Down" == 0.8.6
I want to try out a feature that's in the 0.9.x series, and I see in the README that 0.9.2+ is for Swift 5.1 (which I don't have), so I changed this line to:
github "iwasrobbed/Down" == 0.9.1
and ran:
carthage update --no-use-binaries --platform Mac Down
What did you expect to happen?
I expected version 0.9.1 to be built, and to appear in Carthage/Build/Mac/Down.framework.
What happened instead?
I got a compilation error:
.../Carthage/Checkouts/Down/Source/AST/Styling/Stylers/DownStyler.swift:38:71: error: type of expression is ambiguous without more context
private var listPrefixAttributes: [NSAttributedString.Key : Any] {[
^
Hi @kengruven 👋 You're welcome to maintain your fork, but I'd rather not backport changes to prior Swift versions. It's a rabbit hole that only benefits a few people versus the maintainers having to keep a mental model of all these extra changes
Please help prevent duplicate issues before submitting a new one:
Report
What did you do?
The Cartfile of my project used to have the line:
I want to try out a feature that's in the 0.9.x series, and I see in the README that 0.9.2+ is for Swift 5.1 (which I don't have), so I changed this line to:
and ran:
What did you expect to happen?
I expected version 0.9.1 to be built, and to appear in Carthage/Build/Mac/Down.framework.
What happened instead?
I got a compilation error:
Looking at the code, this appears to be using a new Swift 5.1 language feature, even though it was added to Down in the 5.0-compatible era (0.9.0 / 0.9.1).
How hard would it be to add one word (
return
) here?The text was updated successfully, but these errors were encountered: