massiv-io 0.3.0.0 → 0.3.0.1
raw patch · 3 files changed
+3/−3 lines, 3 filesdep ~massiv
Dependency ranges changed: massiv
Files
- README.md +1/−1
- massiv-io.cabal +1/−1
- src/Data/Massiv/Array/IO/Base.hs +1/−1
README.md view
@@ -7,7 +7,7 @@ | Language | Travis | Azure | Coveralls |Gitter.im | |:--------:|:------:|:-----:|:---------:|:--------:|-|  | [](https://travis-ci.org/lehins/massiv-io) | [](https://dev.azure.com/kuleshevich/massiv-io/_build/latest?definitionId=1?branchName=master) | [](https://coveralls.io/github/lehins/massiv-io?branch=master) | [](https://gitter.im/haskell-massiv/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)+|  | [](https://travis-ci.org/lehins/massiv-io) | [](https://dev.azure.com/kuleshevich/massiv-io/_build?definitionId=1&branchName=master) | [](https://coveralls.io/github/lehins/massiv-io?branch=master) | [](https://gitter.im/haskell-massiv/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | Package | Hackage | Nightly | LTS | |:-------------------|:-------:|:-------:|:---:|
massiv-io.cabal view
@@ -1,5 +1,5 @@ name: massiv-io-version: 0.3.0.0+version: 0.3.0.1 synopsis: Import/export of Image files into massiv Arrays description: This package contains functionality for import/export of arrays into the real world. For now it only has the ability to read/write
src/Data/Massiv/Array/IO/Base.hs view
@@ -317,7 +317,7 @@ -> m (A.Array A.S ix b) unsafeFromStorableVectorM sz v = #if MIN_VERSION_massiv(0,5,0)- resizeM sz $ A.fromStorableVector A.Par $ V.unsafeCast v+ A.resizeM sz $ A.fromStorableVector A.Par $ V.unsafeCast v #else fromVectorM A.Par sz $ V.unsafeCast v #endif