packages feed

fingertree 0.1.6.2 → 0.1.6.3

raw patch · 5 files changed

+12/−3 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/FingerTree.hs view
@@ -90,6 +90,8 @@ #else import Control.Applicative (Applicative(pure, (<*>)), (<$>)) import Data.Monoid+#endif+#if !(MIN_VERSION_base(4,8,0)) || defined(__MHS__) import Data.Foldable (Foldable(foldMap)) #endif #if (MIN_VERSION_base(4,9,0)) && !(MIN_VERSION_base(4,11,0))
Data/IntervalMap/FingerTree.hs view
@@ -61,8 +61,10 @@ import qualified Prelude (null) #else import Control.Applicative ((<$>))-import Data.Foldable (Foldable(foldMap)) import Data.Monoid+#endif+#if !(MIN_VERSION_base(4,8,0)) || defined(__MHS__)+import Data.Foldable (Foldable(foldMap)) import Data.Traversable (Traversable(traverse)) #endif #if (MIN_VERSION_base(4,9,0)) && !(MIN_VERSION_base(4,11,0))
Data/PriorityQueue/FingerTree.hs view
@@ -70,8 +70,10 @@ #if MIN_VERSION_base(4,8,0) import qualified Prelude (null) #else-import Data.Foldable (Foldable(foldMap)) import Data.Monoid+#endif+#if !(MIN_VERSION_base(4,8,0)) || defined(__MHS__)+import Data.Foldable (Foldable(foldMap)) #endif #if (MIN_VERSION_base(4,9,0)) && !(MIN_VERSION_base(4,11,0)) import Data.Semigroup
changelog view
@@ -1,5 +1,8 @@ -*-change-log-*- +0.1.6.3 Ross Paterson <R.Paterson@city.ac.uk> Dec 2025+	* Patches for MicroHS+ 0.1.6.2 Ross Paterson <R.Paterson@city.ac.uk> Jul 2025 	* Change http links in docs to https 
fingertree.cabal view
@@ -1,5 +1,5 @@ Name:           fingertree-Version:        0.1.6.2+Version:        0.1.6.3 Cabal-Version:  1.18 Copyright:      (c) 2006 Ross Paterson, Ralf Hinze License:        BSD3