Skip to content

Commit ca397c2

Browse files
committed
Update changelog for 0.1.0 release
1 parent 31d600a commit ca397c2

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,32 @@ package updates, you can specify your package dependency using
1616

1717
---
1818

19+
## [0.1.0] - 2021-04-13
20+
21+
### Additions
22+
23+
- The `compacted()` method lazily finds the non-`nil` elements of a sequence or
24+
collection ([#112]).
25+
26+
### Changes
27+
28+
- The `uniqued()` method now lazily computes the unique elements of a sequence
29+
or a collection ([#71]). Pass this resulting sequence to an `Array`
30+
initializer to recover the behavior of the previous release.
31+
- Calling `cycled(times:)` now returns a new `FiniteCycle` type, which has the
32+
same conformances as its underlying collection ([#106]).
33+
- The base collections of the sequence and collection wrapper types are no
34+
longer public ([#85], [#125]), and the wrapper types no longer conform to the
35+
`Equatable` or `Hashable` protocols ([#124]). If you need those conformances,
36+
convert the wrapper type to an `Array` or other collection currrency type
37+
before storing. Please file an issue if these changes pose a problem for your
38+
use case.
39+
40+
The 0.1.0 release includes contributions from [LemonSpike], [LucianoPAlmeida],
41+
[natecook1000], and [timvermeulen]. Thank you!
42+
43+
---
44+
1945
## [0.0.4] - 2021-03-29
2046

2147
### Additions
@@ -142,9 +168,15 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
142168
[#54]: https://github.com/apple/swift-algorithms/pull/54
143169
[#56]: https://github.com/apple/swift-algorithms/pull/56
144170
[#65]: https://github.com/apple/swift-algorithms/pull/65
171+
[#71]: https://github.com/apple/swift-algorithms/pull/71
145172
[#77]: https://github.com/apple/swift-algorithms/pull/77
146173
[#78]: https://github.com/apple/swift-algorithms/pull/78
174+
[#85]: https://github.com/apple/swift-algorithms/pull/85
147175
[#91]: https://github.com/apple/swift-algorithms/pull/91
176+
[#106]: https://github.com/apple/swift-algorithms/pull/106
177+
[#112]: https://github.com/apple/swift-algorithms/pull/112
178+
[#124]: https://github.com/apple/swift-algorithms/pull/124
179+
[#125]: https://github.com/apple/swift-algorithms/pull/125
148180

149181
<!-- Link references for contributors -->
150182

@@ -159,6 +191,7 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
159191
[iSame7]: https://github.com/apple/swift-algorithms/commits?author=iSame7
160192
[karwa]: https://github.com/apple/swift-algorithms/commits?author=karwa
161193
[kylemacomber]: https://github.com/apple/swift-algorithms/commits?author=kylemacomber
194+
[LemonSpike]: https://github.com/apple/swift-algorithms/commits?author=LemonSpike
162195
[LucianoPAlmeida]: https://github.com/apple/swift-algorithms/commits?author=LucianoPAlmeida
163196
[markuswntr]: https://github.com/apple/swift-algorithms/commits?author=markuswntr
164197
[mdznr]: https://github.com/apple/swift-algorithms/commits?author=mdznr

0 commit comments

Comments
 (0)