We're planning to tag version 1.0 of Swift Algorithms within the next few weeks. If there's anything about the algorithms currently provided by the package that you'd like to see changed, now is the time to let us know. After the release of v1.0, source-breaking changes will only be considered for major version bumps in accordance with Semantic Versioning.
The biggest planned change between v0.2.1 and v1.0 is the renaming of most sequence and collection types to include a *Sequence or *Collection suffix for consistency with the standard library. One such example is the renaming of the Uniqued type to UniquedSequence. The release/1.0 branch, from which v1.0 will be tagged, already has these changes applied. New algorithms that are close to landing on main will be included in a subsequent minor release.
The plan is to indeed remove those deprecations before tagging v1.0, thanks for bringing it up! They haven't been removed yet in case we want to make a final 0.x release with these deprecations still in place.
You really shouldn’t be using package(name:url:from:) for anything with a major version of 0. You should only be allowing versions that don’t have breaking changes.
By default, 0.y.z versions are all breaking. In the case of Swift Algorithms specifically, pre-1.0.0 patch updates are safe. That’s why you are supposed to use upToNextMinor(from:).