-
Notifications
You must be signed in to change notification settings - Fork 17.7k
Frozen
Sean Liao edited this page Jan 22, 2022
·
3 revisions
Sometimes a package reaches the end of its development cycle and is considered complete. It continues to be maintained, meaning regressions or breakages are fixed, but the scope becomes frozen and no new features are meant to be accepted.
Freezing a package is a message primarily for developers and contributors to the package, not users. It does not imply that the package should not be used. For that, see the "Deprecated" convention.
To signal that a package is frozen and is not accepting new features, add a paragraph to its doc comment stating that, and a recommendation on where to look for and where to contribute new features, if applicable.
// 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.