@@ -16,6 +16,34 @@ package updates, you can specify your package dependency using
1616
1717---
1818
19+ ## [ 0.0.2] - 2020-10-23
20+
21+ ### Changes
22+
23+ - The ` rotate(at:) ` method has been updated to ` rotate(toStartAt:) ` , with the
24+ old name deprecated.
25+ - The ` chained(with:) ` method has been changed to the free function
26+ ` chain(_:_:) ` , with the old version deprecated.
27+ - ` Algorithms ` now uses ` RealModule ` from the ` swift-numerics ` package for its
28+ cross-platform elementary functions.
29+ - Sequence/collection wrapper types, like ` Permutations ` and ` Indexed ` , now
30+ have conformance to the lazy protocols, so that any following operations
31+ maintain their laziness.
32+
33+ ### Fixes
34+
35+ - Swift Algorithms now builds under SwiftPM on Windows.
36+ - A wide variety of errors, misspellings, and ommissions in the documentation
37+ and guides have been fixed.
38+ - Index/distance calculations for the ` Product2 ` and ` Chain ` types have been
39+ corrected.
40+ - Calling ` stablePartition(subrange:by:) ` now correctly uses the subrange's
41+ length instead of the whole collection.
42+
43+ The 0.0.2 release includes contributions from [ AustinConlon] , [ egorzhdan] ,
44+ [ IanKeen] , [ iSame7] , [ karwa] , [ kylemacomber] , [ natecook1000] , [ nordicio] ,
45+ [ pmtao] , [ schlagelk] , [ stephentyrone] , and [ timvermeulen] . Thank you!
46+
1947## [ 0.0.1] - 2020-10-07
2048
2149- ** Swift Algorithms** initial release.
@@ -26,10 +54,23 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
2654
2755<!-- Link references for releases -->
2856
29- [ Unreleased ] : https://github.com/apple/swift-algorithms/compare/0.0.1...HEAD
57+ [ Unreleased ] : https://github.com/apple/swift-algorithms/compare/0.0.2...HEAD
58+ [ 0.0.2 ] : https://github.com/apple/swift-algorithms/compare/0.0.1...0.0.2
3059[ 0.0.1 ] : https://github.com/apple/swift-algorithms/releases/tag/0.0.1
3160
3261<!-- Link references for pull requests -->
3362
3463<!-- Link references for contributors -->
3564
65+ [ AustinConlon ] : https://github.com/apple/swift-algorithms/commits?author=AustinConlon
66+ [ egorzhdan ] : https://github.com/apple/swift-algorithms/commits?author=egorzhdan
67+ [ IanKeen ] : https://github.com/apple/swift-algorithms/commits?author=IanKeen
68+ [ iSame7 ] : https://github.com/apple/swift-algorithms/commits?author=iSame7
69+ [ karwa ] : https://github.com/apple/swift-algorithms/commits?author=karwa
70+ [ kylemacomber ] : https://github.com/apple/swift-algorithms/commits?author=kylemacomber
71+ [ natecook1000 ] : https://github.com/apple/swift-algorithms/commits?author=natecook1000
72+ [ nordicio ] : https://github.com/apple/swift-algorithms/commits?author=nordicio
73+ [ pmtao ] : https://github.com/apple/swift-algorithms/commits?author=pmtao
74+ [ schlagelk ] : https://github.com/apple/swift-algorithms/commits?author=schlagelk
75+ [ stephentyrone ] : https://github.com/apple/swift-algorithms/commits?author=stephentyrone
76+ [ timvermeulen ] : https://github.com/apple/swift-algorithms/commits?author=timvermeulen
0 commit comments