packages feed

extra 1.7.15 → 1.7.16

raw patch · 3 files changed

+4/−2 lines, 3 filesdep ~basePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

+ Data.List.Extra: infixl 9 !?
+ Data.Tuple.Extra: curry :: ((a, b) -> c) -> a -> b -> c
+ Data.Tuple.Extra: data Solo a
+ Data.Tuple.Extra: fst :: (a, b) -> a
+ Data.Tuple.Extra: getSolo :: Solo a -> a
+ Data.Tuple.Extra: pattern Solo :: a -> Solo a
+ Data.Tuple.Extra: snd :: (a, b) -> b
+ Data.Tuple.Extra: swap :: (a, b) -> (b, a)
+ Data.Tuple.Extra: uncurry :: (a -> b -> c) -> (a, b) -> c
+ Extra: infixl 9 !?
- Control.Exception.Extra: errorWithoutStackTrace :: forall (r :: RuntimeRep) (a :: TYPE r). [Char] -> a
+ Control.Exception.Extra: errorWithoutStackTrace :: [Char] -> a
- Extra: errorWithoutStackTrace :: forall (r :: RuntimeRep) (a :: TYPE r). [Char] -> a
+ Extra: errorWithoutStackTrace :: [Char] -> a

Files

CHANGES.txt view
@@ -1,5 +1,7 @@ Changelog for Extra +1.7.16, released 2024-05-11+    Fix to actually work with GHC 9.10 1.7.15, released 2024-05-10     #111, work with GHC 9.10     Test with GHC 9.8
extra.cabal view
@@ -1,7 +1,7 @@ cabal-version:      1.18 build-type:         Simple name:               extra-version:            1.7.15+version:            1.7.16 license:            BSD3 license-file:       LICENSE category:           Development
src/Data/List/NonEmpty/Extra.hs view
@@ -63,7 +63,7 @@ appendr :: [a] -> NonEmpty a -> NonEmpty a appendr l nel = foldr cons nel l -#if __GLASGOW_HASKELL__ <= 910+#if __GLASGOW_HASKELL__ <= 908 -- | Sort by comparing the results of a function applied to each element. --   The sort is stable, and the function is evaluated only once for --   each element.