flow 1.0.18 → 1.0.19
raw patch · 2 files changed
+8/−8 lines, 2 filesdep ~basedep ~template-haskellPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, template-haskell
API changes (from Hackage documentation)
Files
- flow.cabal +5/−5
- package.yaml +3/−3
flow.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 1700109728c80026e27aa49fe4f30ea469e740224269f44801c38b5d7ebc6c48+-- hash: d97407fcb8be459dba94819e5d1b9a15e8f7f7ded3de595c03636aff7377fcae name: flow-version: 1.0.18+version: 1.0.19 synopsis: Write more understandable Haskell. description: Flow provides operators for writing more understandable Haskell. category: Combinators, Functions, Utility@@ -36,7 +36,7 @@ library ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe build-depends:- base >=4.9.0 && <4.13+ base >=4.9.0 && <4.14 default-language: Haskell2010 test-suite test@@ -49,8 +49,8 @@ ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe build-depends: QuickCheck >=2.8.2 && <2.14- , base >=4.9.0 && <4.13+ , base >=4.9.0 && <4.14 , doctest >=0.11.0 && <0.17 , flow- , template-haskell >=2.11.0 && <2.15+ , template-haskell >=2.11.0 && <2.16 default-language: Haskell2010
package.yaml view
@@ -1,5 +1,5 @@ name: flow-version: 1.0.18+version: 1.0.19 category: Combinators, Functions, Utility description: Flow provides operators for writing more understandable Haskell.@@ -15,7 +15,7 @@ synopsis: Write more understandable Haskell. dependencies:- base: '>= 4.9.0 && < 4.13'+ base: '>= 4.9.0 && < 4.14' ghc-options: -Weverything -Wno-implicit-prelude@@ -31,6 +31,6 @@ doctest: '>= 0.11.0 && < 0.17' flow: -any QuickCheck: '>= 2.8.2 && < 2.14'- template-haskell: '>= 2.11.0 && < 2.15'+ template-haskell: '>= 2.11.0 && < 2.16' main: Main.hs source-dirs: tests