Skip to content

v1.7.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Nov 23:33
· 1 commit to master since this release
5bda0b7

OrderedCollections v1.7.0

Diff since v1.6.3

New features

  • Add sort! method for unfrozen LittleDict (#136)
  • Add mergewith method for LittleDict (#119)

Bug fixes

  • Fix rehash! for OrderedDict (for example delete!(d, nothing) could produce nonsense or even crash) (#120)
  • Avoid iterating twice over generators when there is an exception, at least in Julia >= 1.11 (#137)

Other changes

  • Remove all uses ccall (#121)
  • Remove convert method for Type{OrderedDict}, the generic Julia method does the same, except for a deprecation warning our method produced (#139)
  • Several other janitorial changes

Merged pull requests:

Closed issues:

  • Deployed Docs are out of date (#31)
  • Feature Request: sort!(::UnfrozenLittleDict{K,V}) (#51)
  • Is OrderedDict maybe broken? (#58)
  • Bug in OrderedDict (unlike in LittleDict, and Dict) (#65)
  • mergewith not working properly for OrderedDict (#77)
  • Construction from generator may iterate a second time (#86)
  • Deleting nothing from OrderedDict (#87)
  • Invalidations due to conversion to OrderedDict (#90)
  • Add sort! method for LittleDict (#116)