packages feed

sorted-list 0.1.4.1 → 0.1.4.2

raw patch · 2 files changed

+4/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/SortedList.hs view
@@ -84,8 +84,9 @@  #if !MIN_VERSION_base(4,8,0) -- | Check if a sorted list is empty.+-- --   /This function dissappears in @base@ version 4.8.0.0 in favor of @null@/---   /from "Data.Traversable"./+--   /from "Data.Foldable"./ null :: SortedList a -> Bool null = List.null . fromSortedList #endif
sorted-list.cabal view
@@ -1,5 +1,5 @@ name:                sorted-list-version:             0.1.4.1+version:             0.1.4.2 synopsis:            Type-enforced sorted lists and related functions. description:         Type-enforced sorted lists and related functions.                      .@@ -25,6 +25,7 @@   ghc-options:         -Wall  benchmark sorted-list-map-bench+  default-language: Haskell2010   type: exitcode-stdio-1.0   hs-source-dirs: bench   main-is: map.hs