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
Thanks for this great package — it works well and is easy to use!
Would you be open to tagging a release (e.g. 1.0.0 or 0.1.0)?
I’m using this package as a dependency of another SwiftPM package that I’d like to release under a stable version (from: "1.0.0"), but SwiftPM doesn’t allow that if one of the transitive dependencies uses an unstable reference (like .branch("main")):
error: Dependencies could not be resolved because root depends on 'sake' 1.0.0..<2.0.0.
'sake'>= 1.0.0 cannot be used because package 'sake' is required using a stable-version but 'sake' depends on an unstable-version package 'swift-subprocess' and no versions of 'sake' match the requirement 1.0.1..<2.0.0.
// Root package
dependencies:[.package(url:"https://github.com/kattouf/Sake.git", from:"1.0.0"),
// Dep package
dependencies:[.package(url:"https://github.com/swiftlang/swift-subprocess.git", branch:"main"),
A tag would make it possible to include swift-subprocess in the dependency graph of stable packages.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi @kattouf, thank you for giving Subprocess a try! We’re planning to release a 0.0.1 version soon. Following that, the package will enter a “public beta” phase, during which the API may change based on the feedback we receive. Our goal is to reach 1.0 by this fall.
There are a few remaining blocking issues I'd like to address before we can tag 0.0.1. Stay tuned for updates!
Hi! 👋
Thanks for this great package — it works well and is easy to use!
Would you be open to tagging a release (e.g. 1.0.0 or 0.1.0)?
I’m using this package as a dependency of another SwiftPM package that I’d like to release under a stable version (from: "1.0.0"), but SwiftPM doesn’t allow that if one of the transitive dependencies uses an unstable reference (like .branch("main")):
A tag would make it possible to include swift-subprocess in the dependency graph of stable packages.
Thanks in advance!
The text was updated successfully, but these errors were encountered: