Cabal revisions of step-function-0.2
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
cabal-version: >= 1.10 name: step-function version: 0.2+x-revision: 1 synopsis: Staircase functions or piecewise constant functions category: Text GHC==7.10.3 GHC==8.0.2 GHC==8.2.2- GHC==8.4.2+ GHC==8.4.3+ GHC==8.6.1 source-repository head type: git ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.12,+ base >=4.6 && <4.13, base-compat-batteries >=0.10.1 && <0.11, deepseq >=1.3.0.1 && <1.5,- containers >=0.5.0.0 && <0.6,- QuickCheck >=2.11.3 && <2.12+ containers >=0.5.0.0 && <0.7,+ QuickCheck >=2.11.3 && <2.13 if !impl(ghc >= 8.0) -- We enforce the fact that with GHC-7.10
revision 2
cabal-version: >= 1.10 name: step-function version: 0.2-x-revision: 1+x-revision: 2 synopsis: Staircase functions or piecewise constant functions category: Text GHC==7.10.3 GHC==8.0.2 GHC==8.2.2- GHC==8.4.3- GHC==8.6.1+ GHC==8.4.4+ GHC==8.6.4 source-repository head type: git base-compat-batteries >=0.10.1 && <0.11, deepseq >=1.3.0.1 && <1.5, containers >=0.5.0.0 && <0.7,- QuickCheck >=2.11.3 && <2.13+ QuickCheck >=2.11.3 && <2.14 if !impl(ghc >= 8.0) -- We enforce the fact that with GHC-7.10
revision 3
cabal-version: >= 1.10 name: step-function version: 0.2-x-revision: 2+x-revision: 3 synopsis: Staircase functions or piecewise constant functions category: Text GHC==8.0.2 GHC==8.2.2 GHC==8.4.4- GHC==8.6.4+ GHC==8.6.5+ GHC==8.8.1 source-repository head type: git ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.13,- base-compat-batteries >=0.10.1 && <0.11,+ base >=4.6 && <4.14,+ base-compat-batteries >=0.10.1 && <0.12, deepseq >=1.3.0.1 && <1.5, containers >=0.5.0.0 && <0.7, QuickCheck >=2.11.3 && <2.14
revision 4
-cabal-version: >= 1.10-name: step-function-version: 0.2-x-revision: 3--synopsis: Staircase functions or piecewise constant functions-category: Text+cabal-version: >=1.10+name: step-function+version: 0.2+x-revision: 4+synopsis: Staircase functions or piecewise constant functions+category: Text description: Step functions, staircase functions or piecewise constant functions. Implemented as a default value and a series of transitions. Supports merging two step functions using a supplied merging function. . -homepage: https://github.com/jonpetterbergman/step-function-bug-reports: https://github.com/jonpetterbergman/stepfunction/issues-author: Oleg Grenrus <oleg.grenrus@iki.fi>, Petter Bergman <jon.petter.bergman@gmail.com>-maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>-license: BSD3-license-file: LICENSE-build-type: Simple+homepage: https://github.com/jonpetterbergman/step-function+bug-reports: https://github.com/jonpetterbergman/stepfunction/issues+author:+ Oleg Grenrus <oleg.grenrus@iki.fi>, Petter Bergman <jon.petter.bergman@gmail.com>++maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>+license: BSD3+license-file: LICENSE+build-type: Simple extra-source-files: README.md Changelog.md tested-with:- GHC==7.6.3- GHC==7.8.4- GHC==7.10.3- GHC==8.0.2- GHC==8.2.2- GHC==8.4.4- GHC==8.6.5- GHC==8.8.1+ GHC ==7.6.3+ || ==7.8.4+ || ==7.10.3+ || ==8.0.2+ || ==8.2.2+ || ==8.4.4+ || ==8.6.5+ || ==8.8.3+ || ==8.10.1 source-repository head- type: git+ type: git location: https://github.com/jonpetterbergman/step-function library ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.14,- base-compat-batteries >=0.10.1 && <0.12,- deepseq >=1.3.0.1 && <1.5,- containers >=0.5.0.0 && <0.7,- QuickCheck >=2.11.3 && <2.14+ base >=4.6 && <4.15+ , base-compat-batteries >=0.10.1 && <0.12+ , containers >=0.5.0.0 && <0.7+ , deepseq >=1.3.0.1 && <1.5+ , QuickCheck >=2.11.3 && <2.15 - if !impl(ghc >= 8.0)+ if !impl(ghc >=8.0) -- We enforce the fact that with GHC-7.10 -- we have at least transformers-0.4.2.0 (the bundled one) -- which has 'Data.Functor.Classes' module. (transformers-0.3 doesn't have)- if impl(ghc >= 7.10)- build-depends:- transformers >=0.4.2.0 && <0.6+ if impl(ghc >=7.10)+ build-depends: transformers >=0.4.2.0 && <0.6+ else build-depends:- transformers >=0.3.0.0 && <0.6,- transformers-compat >=0.6.2 && <0.7+ transformers >=0.3.0.0 && <0.6+ , transformers-compat >=0.6.2 && <0.7 other-extensions:- DeriveFunctor DeriveFoldable+ DeriveFunctor DeriveTraversable OverloadedStrings+ exposed-modules: Data.Function.Step Data.Function.Step.Discrete Data.Function.Step.Discrete.Closed test-suite merge- type: exitcode-stdio-1.0- main-is: Merge.hs+ type: exitcode-stdio-1.0+ main-is: Merge.hs build-depends:- base,- step-function,- QuickCheck- hs-source-dirs: test- default-language: Haskell2010+ base+ , QuickCheck+ , step-function++ hs-source-dirs: test+ default-language: Haskell2010
revision 5
cabal-version: >=1.10 name: step-function version: 0.2-x-revision: 4+x-revision: 5 synopsis: Staircase functions or piecewise constant functions category: Text description: || ==8.2.2 || ==8.4.4 || ==8.6.5- || ==8.8.3- || ==8.10.1+ || ==8.8.4+ || ==8.10.4+ || ==9.0.1 source-repository head type: git ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.15+ base >=4.6 && <4.16 , base-compat-batteries >=0.10.1 && <0.12 , containers >=0.5.0.0 && <0.7 , deepseq >=1.3.0.1 && <1.5
revision 6
cabal-version: >=1.10 name: step-function version: 0.2-x-revision: 5+x-revision: 6 synopsis: Staircase functions or piecewise constant functions category: Text description: hs-source-dirs: src build-depends: base >=4.6 && <4.16- , base-compat-batteries >=0.10.1 && <0.12+ , base-compat-batteries >=0.10.1 && <0.13 , containers >=0.5.0.0 && <0.7 , deepseq >=1.3.0.1 && <1.5 , QuickCheck >=2.11.3 && <2.15
revision 7
cabal-version: >=1.10 name: step-function version: 0.2-x-revision: 6+x-revision: 7 synopsis: Staircase functions or piecewise constant functions category: Text description: || ==8.4.4 || ==8.6.5 || ==8.8.4- || ==8.10.4+ || ==8.10.7 || ==9.0.1+ || ==9.2.1 source-repository head type: git ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.16+ base >=4.6 && <4.17 , base-compat-batteries >=0.10.1 && <0.13 , containers >=0.5.0.0 && <0.7 , deepseq >=1.3.0.1 && <1.5 -- we have at least transformers-0.4.2.0 (the bundled one) -- which has 'Data.Functor.Classes' module. (transformers-0.3 doesn't have) if impl(ghc >=7.10)- build-depends: transformers >=0.4.2.0 && <0.6+ build-depends: transformers >=0.4.2.0 && <0.7 else build-depends:- transformers >=0.3.0.0 && <0.6- , transformers-compat >=0.6.2 && <0.7+ transformers >=0.3.0.0 && <0.7+ , transformers-compat >=0.6.2 && <0.8 other-extensions: DeriveFoldable
revision 8
cabal-version: >=1.10 name: step-function version: 0.2-x-revision: 7+x-revision: 8 synopsis: Staircase functions or piecewise constant functions category: Text description: || ==8.6.5 || ==8.8.4 || ==8.10.7- || ==9.0.1- || ==9.2.1+ || ==9.0.2+ || ==9.2.4+ || ==9.4.1 source-repository head type: git ghc-options: -Wall hs-source-dirs: src build-depends:- base >=4.6 && <4.17+ base >=4.6 && <4.18 , base-compat-batteries >=0.10.1 && <0.13 , containers >=0.5.0.0 && <0.7 , deepseq >=1.3.0.1 && <1.5