Skip to content

Releases: pointfreeco/swift-identified-collections

1.0.2

17 May 16:27
d533cd1
Compare
Choose a tag to compare

What's Changed

  • Fixed: A regression to the subscript set operation that broke certain algorithms (like sort(using: KeyPathComparator) introduced by #66 has been fixed (#70).

Full Changelog: 1.0.1...1.0.2

1.0.1

26 Apr 15:44
2481e39
Compare
Choose a tag to compare

What's Changed

  • Fixed: IdentifiedArray's positional subscript setter will now replace, rather than insert, elements when the identity doesn't match the current element at that index (#66).
  • Infrastructure: Add Windows CI (thanks @brianmichel, #62).

New Contributors

Full Changelog: 1.0.0...1.0.1

1.0.0

30 Jul 18:09
d1e45f3
Compare
Choose a tag to compare

What's Changed

  • Added: First "stable" release. Identified Collections contains APIs extracted from the Composable Architecture's suite of tools, which is now considered stable. This 1.0 release will introduce a more strict adherence to semantic versioning.
  • Changed: Identified is now conditionally Sendable (thanks @tgrapperon, #60).

New Contributors

Full Changelog: 0.8.0...1.0.0

0.8.0

22 Jun 15:24
d01446a
Compare
Choose a tag to compare

What's Changed

  • Added: IdentifiedArray.init(_:uniquingIDsWith:) (thanks @alexito4, #58; #59)

New Contributors

Full Changelog: 0.7.1...0.8.0

0.7.1

05 Apr 15:51
f52eee2
Compare
Choose a tag to compare

What's Changed

  • Fixed: Added explicit import OrderedCollections to silence Swift warning (#54).
  • Infrastructure: Added Korean version of the README (thanks @havilog, #50).

New Contributors

Full Changelog: 0.7.0...0.7.1

0.7.0

13 Feb 23:13
ad3932d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.0...0.7.0

0.6.0

06 Jan 17:43
fd34c54
Compare
Choose a tag to compare

What's Changed

  • Fixed: Added IdentifiedArray.subscript(position:) { set } to fix SwiftUI editability (#48).
  • Infrastructure: Add DocC and GitHub Issue Templates (#47).

Full Changelog: 0.5.0...0.6.0

0.5.0

14 Nov 20:54
a08887d
Compare
Choose a tag to compare

What's Changed

  • Added: IdentifiedArray now conforms to Sendable, MutableCollection, and RangeReplaceableCollection (#41).

Full Changelog: 0.4.1...0.5.0

0.4.1

12 Sep 14:49
bfb0d43
Compare
Choose a tag to compare
  • Fixed: The swift-identified-collections package no longer publicly vends its internal schemes.

0.4.0

20 May 15:15
2d6b7ff
Compare
Choose a tag to compare
  • Added: IdentifiedArray.append(contentsOf:), which appends elements to an array iff they are not already present (thanks @jeffersonsetiawan).
  • Updated: swift-collections dependency has been updated to 1.0.2 (thanks @KaiOelfke).
  • Updated: Identified Collections platform requirements have been relaxed.