All Versions
12
Latest Version
0.5
Avg Release Cycle
176 days
Latest Release
1498 days ago

Changelog History
Page 1

  • v0.5 Changes

    March 18, 2020
    • GHC 8.8 (and possibly 8.10) compatibility.

    • safecopy-0.10 compatibility.

  • v0.4 Changes

    March 18, 2018
    • GHC 8.4 compatibility.

    • โฌ‡๏ธ Drop compatibility with GHC 7. GHC 8.4 introduces Semigroup as a superclass for monoid, and Semigroup is not in base prior to GHC 8. To avoid a conditional interface or a dependency on the semigroups package, we drop compatibility with GHC 7. There are not other changes in this version, so ixset-typed-0.3.1.1 remains usable with GHC 7.

  • v0.4.0.1 Changes

    October 01, 2018
    • containers-0.6 compatibility.
  • v0.3.1 Changes

    June 21, 2016
    • GHC 8.0 compatibility.
  • v0.3.1.1 Changes

    August 14, 2017
    • GHC 8.2 compatibility.
  • v0.3 Changes

    July 23, 2014
    • IxSet internals are now more strict

    • The empty method of Indexable is now called indices and has a slightly different path; to migrate your code, if you were using Template Haskell, you probably do not have to change anything. Otherwise, wherever you have an instance of Indexable that looks like this

      instance Indexable MyIndexSet MyType where -- OLD empty = mkEmpty ...

    change it to

       instance Indexable MyIndexSet MyType where  -- NEW
         indices = ixList ...
    
  • v0.2 Changes

    April 06, 2014
    • โž• Add testsuite (which is a port of the ixset testsuite).

    • ๐Ÿ“š Cleaning up and documentation.

    • โž• Add 'Foldable' and 'NFData' instances.

  • v0.1.4 Changes

    April 03, 2014
    • ๐Ÿ“š Documentation.
  • v0.1.3 Changes

    April 02, 2014
    • Export IsIndexOf class.
  • v0.1.2 Changes

    April 02, 2014
    • Clean up export list.

    • ๐Ÿ“š Documentation.