b9 0.5.20 → 0.5.21
raw patch · 3 files changed
+26/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- .travis.yml +24/−3
- b9.cabal +1/−1
- src/lib/B9/DiskImageBuilder.hs +1/−1
.travis.yml view
@@ -1,3 +1,24 @@-language: haskell-ghc:- - 7.8+language: c++sudo: false+cache:+ directories:+ - $HOME/.stack/++matrix:+ include:+ - env: CABALVER=1.22 GHCVER=7.10.3+ addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3],sources: [hvr-ghc]}}++before_install:+ - mkdir -p ~/.local/bin+ - export PATH=~/.local/bin:$PATH+ - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar -xzO --wildcards '*/stack' > ~/.local/bin/stack+ - chmod a+x ~/.local/bin/stack++install:+ - stack -j 2 setup --no-terminal+ - stack -j 2 build --only-snapshot --no-terminal++script:+ - stack -j 2 build --no-terminal
b9.cabal view
@@ -1,5 +1,5 @@ name: b9-version: 0.5.20+version: 0.5.21 synopsis: A tool and library for building virtual machine images.
src/lib/B9/DiskImageBuilder.hs view
@@ -347,7 +347,7 @@ conversionOptions :: ImageType -> String conversionOptions Vmdk = " -o adapter_type=lsilogic "-conversionOptions QCow2 = " -o compat=1.1,preallocation=metadata,lazy_refcounts=on "+conversionOptions QCow2 = " -o compat=1.1,lazy_refcounts=on " conversionOptions _ = " " toQemuSizeOptVal :: ImageSize -> String