@@ -16,6 +16,34 @@ package updates, you can specify your package dependency using
16
16
17
17
---
18
18
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
+
19
47
## [ 0.0.1] - 2020-10-07
20
48
21
49
- ** Swift Algorithms** initial release.
@@ -26,10 +54,23 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
26
54
27
55
<!-- Link references for releases -->
28
56
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
30
59
[ 0.0.1 ] : https://github.com/apple/swift-algorithms/releases/tag/0.0.1
31
60
32
61
<!-- Link references for pull requests -->
33
62
34
63
<!-- Link references for contributors -->
35
64
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