vector-sized 1.1.0.0 → 1.1.1.0
raw patch · 3 files changed
+10/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- changelog.md +4/−0
- src/Data/Vector/Unboxed/Sized.hs +5/−1
- vector-sized.cabal +1/−1
changelog.md view
@@ -1,5 +1,9 @@ # Change Log +## [1.1.1.0] - 2018-11-13++- Fix build and add CI for 8.6.2+ ## [1.1.0.0] - 2018-11-08 - Generalise Ix instance
src/Data/Vector/Unboxed/Sized.hs view
@@ -7,6 +7,10 @@ {-# LANGUAGE TypeOperators #-} {-# LANGUAGE CPP #-} +#if MIN_VERSION_base(4,12,0)+{-# LANGUAGE NoStarIsType #-}+#endif+ {-| This module re-exports the functionality in 'Data.Vector.Generic.Sized' specialized to 'Data.Vector.Unboxed'@@ -871,7 +875,7 @@ -- | /O(n*m)/ Map a function over a vector and concatenate the results. The -- function is required to always return the same length vector. concatMap :: (Unbox a, Unbox b)- => (a -> Vector m b) -> Vector n a -> Vector (n*m) b+ => (a -> Vector m b) -> Vector n a -> Vector (n * m) b concatMap = V.concatMap {-# inline concatMap #-}
vector-sized.cabal view
@@ -1,5 +1,5 @@ name: vector-sized-version: 1.1.0.0+version: 1.1.1.0 synopsis: Size tagged vectors description: Please see README.md homepage: http://github.com/expipiplus1/vector-sized#readme