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
you could also substitute "0.9.0" here instead of "0.33.1" - it will use the highest version under 1.0 it finds
It looks like the definition of IdentifiedArray changed after 0.15.0 (I assume this is why you froze the project there).
There were only a few lines that needed to be changed - you just need to add id: as a label when updating an element of the identifiable array. You also need to adjust for optionality - hence the ?s. I marked the four affected lines below with ** delimiters
What a great job you've done! This is a really well thought-through project, and covers so much ground. So hats off!
I was able to update your project to use 0.33.1 instead of 0.15.0 with a very small change:
// url: "https://github.com/pointfreeco/swift-composable-architecture", .exact("0.15.0")),
url: "https://github.com/pointfreeco/swift-composable-architecture", from: "0.33.1"),
you could also substitute "0.9.0" here instead of "0.33.1" - it will use the highest version under 1.0 it finds
It looks like the definition of IdentifiedArray changed after 0.15.0 (I assume this is why you froze the project there).
There were only a few lines that needed to be changed - you just need to add
id:
as a label when updating an element of the identifiable array. You also need to adjust for optionality - hence the?
s. I marked the four affected lines below with ** delimitersin Core/MinefieldCore.swift
Thanks for providing this project.
The text was updated successfully, but these errors were encountered: