packages feed

vector-sized 0.1.0.0 → 0.2.0.0

raw patch · 3 files changed

+6/−2 lines, 3 files

Files

changelog.md view
@@ -1,4 +1,7 @@ # Change Log +## [0.2.0.0] - 2016-02-29+Tighter bounds on base to avoid compiling with GHC < 7.10.+ ## [0.1.0.0] - 2016-02-28 Initial release.
readme.md view
@@ -11,3 +11,4 @@ difference is that fixed-vector uses Peano naturals to represent the size tag on the vectors and this package uses typelits. +The initial code for this package was written by @bgamari in a [PR for vulkan](https://github.com/expipiplus1/vulkan/pull/1)
vector-sized.cabal view
@@ -1,5 +1,5 @@ name:                vector-sized-version:             0.1.0.0+version:             0.2.0.0 synopsis:            Size tagged vectors description:         Please see README.md homepage:            http://github.com/expipiplus1/vector-sized#readme@@ -18,7 +18,7 @@   hs-source-dirs:      src   exposed-modules:     Data.Vector.Generic.Sized                      , Data.Vector.Storable.Sized-  build-depends:       base >= 4.7 && < 5+  build-depends:       base >= 4.8 && < 5                      , vector >= 0.11 && < 0.12                      , deepseq >= 1.1 && < 1.5   default-language:    Haskell2010