All Versions
41
Latest Version
Avg Release Cycle
87 days
Latest Release
1047 days ago

Changelog History
Page 1

  • v2.4.0 Changes

    May 16, 2021

    API Changes

    • Implement SortedDict methods: or, ror, and ior per PEP 584.
  • v2.3.0 Changes

    November 08, 2020

    ๐Ÿ›  Bugfixes

    • โšก๏ธ Make sort order stable when updating with large iterables.
  • v2.2.2 Changes

    June 07, 2020

    Miscellaneous

    • Add "small slice" optimization to SortedList.__getitem__.
    • โœ… Silence warning when testing SortedList.iloc.
  • v2.2.1 Changes

    June 06, 2020

    Miscellaneous

    • ๐Ÿ›  Fix a warning regarding classifiers in setup.py.
  • v2.2.0 Changes

    June 06, 2020

    Miscellaneous

    • ๐Ÿ”„ Change SortedDict to avoid cycles for CPython reference counting.
  • v2.1.0 Changes

    November 21, 2018

    Miscellaneous

    • โšก๏ธ Small updates to docs and tests for Python 3.7.
  • v2.0.5 Changes

    September 03, 2018

    ๐Ÿ›  Bugfixes

    • ๐Ÿ”„ Change imports for Abstract Base Classes to collections.abc to avoid warnings in Python 3.7.
  • v2.0.4 Changes

    June 06, 2018

    ๐Ÿ›  Bugfixes

    • SortedDict methods iterkeys, iteritems, itervalues, viewkeys, viewitems, and viewvalues are not implemented for Python 2. Attribute lookup now raises :exc:AttributeError.
  • v2.0.3 Changes

    May 31, 2018

    API Changes

    • ๐Ÿ—„ Accessing SortedDict.iloc will emit DeprecationWarning.

    ๐Ÿ›  Bugfixes

    • SortedSet.__rsub__ erroneously reversed its arguments. The method has been removed in favor of the inherited Set.__rsub__ which has a correct implementation.
    • :class:SortedKeysView and :class:SortedValuesView set-operations now return :class:SortedSet objects to better match the semantics of version 1.

    Miscellaneous

    • โœ… The source distribution no longer contains the docs and tests directories. If you need these, then please download an archive from Github. Version control is tagged with the version released to PyPI.
  • v2.0.2 Changes

    May 21, 2018

    API Changes

    • โž• Add SortedDict.iloc for improved backwards compatibility with version 1.