Swift - 如何弃用 SPM 库中的函数

Swift - how to deprecate a function in SPM library

我们正在维护一个私有的 SPM 库,我想介绍一个应该使用的函数,而不是现有的函数。最终结果应该是某种 弃用 .

到目前为止,我发现函数可以相对于 OS 版本弃用,但我需要相对于库版本弃用它。

例如:

//how do I deprecate this function as of version `1.1.0` of my library?
func oldFunc() {
    ...
}

//It will be awesome if I could also mention that this function is the newer alternative to `oldFunc`
func newFunc() {
    ...
}

你可以使用这样的东西:

@available(*, deprecated, renamed: "newFunction")
func sampleFunction() { }