Skip to content

Releases: JuliaCollections/DataStructures.jl

v0.17.6

22 Nov 12:19
v0.17.6
Compare
Choose a tag to compare

v0.17.6 (2019-11-22)

Diff since v0.17.5

Closed issues:

  • Docstrings should annotate types in the docstrings (#510)

Merged pull requests:

v0.17.5

29 Oct 11:02
v0.17.5
452caf8
Compare
Choose a tag to compare

v0.17.5 (2019-10-29)

Diff since v0.17.4

Closed issues:

  • Support Set operations on counters (because they are bags) (#474)
  • Get rid of heap pseudoconstructors ? (#469)

Merged pull requests:

v0.17.4

27 Oct 22:02
v0.17.4
65bfc14
Compare
Choose a tag to compare

v0.17.4 (2019-10-27)

Diff since v0.17.3

Merged pull requests:

v0.17.3

21 Oct 17:05
v0.17.3
Compare
Choose a tag to compare

v0.17.3 (2019-10-21)

Diff since v0.17.2

Closed issues:

  • Packed(Sparse?)IntSet Implementation (#532)

Merged pull requests:

  • CircularBuffer: Added first/last methods that slightly improve performance (#543) (sairus7)
  • Remove trailing whitespace and newlines (#538) (mortenpi)
  • Various documentation build fixes (#537) (mortenpi)

v0.17.2

07 Oct 08:20
v0.17.2
6887bae
Compare
Choose a tag to compare

v0.17.2 (2019-10-04)

Diff since v0.17.1

Merged pull requests:

v0.17.1

01 Oct 14:17
v0.17.1
e0bd1a7
Compare
Choose a tag to compare

v0.17.1 (2019-10-01)

Diff since v0.17.0

Closed issues:

  • Documentation on github.io not picking-up changes (#526)
  • MultiDict: insert!(a, k, ARRAY) appends array instead of adding entry (#522)
  • sizehint! is not implemented for heaps (#518)
  • Latest doc is not autodeployed (#430)

Merged pull requests:

v0.17.0

05 Jul 19:04
v0.17.0
3cf4fdb
Compare
Choose a tag to compare

v0.17.0 (2019-07-05)

Diff since v0.14.2

Closed issues:

  • Clean out deprecations that we declared (#477)

Merged pull requests:

v0.16.1

05 Jul 17:52
53c2c76
Compare
Choose a tag to compare

v0.16.1 (2019-07-05)

Diff since v0.14.1

Closed issues:

  • CircularBuffer(n) should be the same as CircularBuffer{Any}(n) (#506)

Merged pull requests:

v0.14.1

22 May 15:03
v0.14.1
81affc5
Compare
Choose a tag to compare

v0.14.1 (2019-05-22)

Diff since v0.16.0

Closed issues:

  • Add documentation for FenwickTree (#491)
  • Is there any delete!\(\) functionality for mutable binary heaps? (#489)
  • collect interface does not work for PriorityQueue (#369)

Merged pull requests:

  • Same behaviour for get and getkey as with julias base Dict. (#505) (altre)
  • Adding the get! method for the PriorityQueue very similar to Dict. (#494) (sambitdash)
  • Issue#369: Ordered iterator interface for priority queue (#493) (sambitdash)
  • Added delete!\(node\_handle\) functionality for mutable binary heaps (#490) (Sumegh-git)

Accumulator as a Multiset, MutableLinkedList, FenwickTree

09 Apr 20:22
Compare
Choose a tag to compare
  • Doc updates for accumulator
  • Allow Accumulator to be used as a multiset
  • Add MutableLinkedList
  • Add FenwickTree