flow 1.0.7 → 1.0.8
raw patch · 3 files changed
+7/−7 lines, 3 filesdep ~doctestPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: doctest
API changes (from Hackage documentation)
+ Flow: infixl 0 !>
+ Flow: infixl 9 .>
+ Flow: infixr 0 <!
+ Flow: infixr 9 <.
Files
- README.md +2/−2
- flow.cabal +3/−3
- package.yaml +2/−2
README.md view
@@ -43,8 +43,8 @@ Flow | Base --------------- | --------------`x |> f` | `x & f`-`f <| x` | `f $ x`+<code>x |> f</code> | `x & f`+<code>f <| x</code> | `f $ x` `apply x f` | `f x` `f .> g` | `f >>> g` `g <. f` | `g . f`
flow.cabal view
@@ -1,9 +1,9 @@--- This file has been generated from package.yaml by hpack version 0.14.0.+-- This file has been generated from package.yaml by hpack version 0.17.1. -- -- see: https://github.com/sol/hpack name: flow-version: 1.0.7+version: 1.0.8 synopsis: Write more understandable Haskell. description: Flow provides operators for writing more understandable Haskell. category: Combinators, Functions, Utility@@ -41,7 +41,7 @@ ghc-options: -Wall build-depends: base- , doctest >=0.9 && <0.12+ , doctest >=0.9 && <0.13 , flow , QuickCheck ==2.* , template-haskell ==2.*
package.yaml view
@@ -22,9 +22,9 @@ flow-test-suite: dependencies: - base- - doctest >=0.9 && <0.12+ - doctest >=0.9 && <0.13 - flow - QuickCheck ==2.* - template-haskell ==2.* main: FlowTest.hs-version: '1.0.7'+version: '1.0.8'