packages feed

drawille 0.1.0.3 → 0.1.0.4

raw patch · 1 files changed

+18/−4 lines, 1 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

drawille.cabal view
@@ -1,5 +1,5 @@ Name:                   drawille-Version:                0.1.0.3+Version:                0.1.0.4 Category:               System Author:                 Pedro Yamada <tacla.yamada@gmail.com> Maintainer:             Pedro Yamada <tacla.yamada@gmail.com>@@ -12,10 +12,18 @@ Cabal-Version:          >= 1.10 Build-Type:             Simple +Flag no-tests+    Description:        Don't build test suites+    Default:            False++Flag examples+    Description:        Build examples+    Default:            False+ Library   Default-Language:     Haskell2010   HS-Source-Dirs:       src-  GHC-Options:          -Wall+  GHC-Options:          -Wall -threaded -O3   Exposed-Modules:      System.Drawille   Build-Depends:        base >=4 && <5                       , containers >=0.5 && <0.6@@ -24,23 +32,27 @@   Default-Language:     Haskell2010   HS-Source-Dirs:       examples                       , src-  Ghc-Options:          -Wall+  Ghc-Options:          -Wall -O3   Main-Is:              Senoid.hs   Build-Depends:        base >=4 && <5                       , containers >=0.5 && <0.6                       , AC-Angle >=1.0 && <1.1+  if !flag(examples)+    Buildable: False  Executable image2term   Default-Language:     Haskell2010   HS-Source-Dirs:       examples                       , src-  Ghc-Options:          -Wall+  Ghc-Options:          -Wall -threaded -O3   Main-Is:              Image2Term.hs   Build-Depends:        base >=4 && <5                       , containers >=0.5 && <0.6                       , friday >=0.1 && <0.2                       , terminal-size >=0.2 && <1                       , vector+  if !flag(examples)+    Buildable: False  Test-Suite spec   Type:                 exitcode-stdio-1.0@@ -53,6 +65,8 @@                       , hspec >=1.11 && <1.12                       , QuickCheck >=2.6 && <2.7                       , containers >=0.5 && <0.6+  if flag(no-tests)+    Buildable: False  Source-Repository head   Type:                 git