Go Wiki:Frozen
有时,一个软件包会达到其开发周期的末尾并被认为已完成。它会继续得到维护,这意味着会修复回归或中断,但范围会冻结,并且不会接受任何新功能。
冻结软件包主要面向软件包的开发人员和贡献者,而不是用户。这并不意味着该软件包不应被使用。为此,请参阅 “已弃用”惯例。
要表示一个软件包已冻结且不接受新功能,请在其文档注释中添加一段说明该情况的段落,并在适用的情况下推荐在何处查找和贡献新功能。
示例
// The syslog package is frozen and is not accepting new features.
// Some external packages provide more functionality. See:
//
// https://pkg.go.dev/search?q=syslog
// The smtp package is frozen and is not accepting new features.
// Some external packages provide more functionality. See:
//
// https://pkg.go.dev/search?q=smtp
// The net/rpc package is frozen and is not accepting new features.
// The testing/quick package is frozen and is not accepting new features.
// The text/tabwriter package is frozen and is not accepting new features.
此内容是 Go Wiki 的一部分。