flow 1.0.10 → 1.0.11
raw patch · 3 files changed
+13/−15 lines, 3 filesdep ~doctestPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: doctest
API changes (from Hackage documentation)
Files
- LICENSE.md +8/−10
- flow.cabal +3/−3
- package.yaml +2/−2
LICENSE.md view
@@ -1,13 +1,13 @@-[The MIT License (MIT)][]+MIT License -Copyright (c) 2016 Taylor Fausak+Copyright (c) 2018 Taylor Fausak -Permission is hereby granted, free of charge, to any person obtaining a copy of-this software and associated documentation files (the "Software"), to deal in-the Software without restriction, including without limitation the rights to-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies-of the Software, and to permit persons to whom the Software is furnished to do-so, subject to the following conditions:+Permission is hereby granted, free of charge, to any person obtaining a copy+of this software and associated documentation files (the "Software"), to deal+in the Software without restriction, including without limitation the rights+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+copies of the Software, and to permit persons to whom the Software is+furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.@@ -19,5 +19,3 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.--[The MIT License (MIT)]: https://opensource.org/licenses/MIT
flow.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 16a0bd54d764878625ac6799c56aeeb1f4e7ff0c13b9539be5218d61bb42189c+-- hash: b07f3e7612eeaed337eca518f946097b66810bc22deaabad1b817cc93d1d7d45 name: flow-version: 1.0.10+version: 1.0.11 synopsis: Write more understandable Haskell. description: Flow provides operators for writing more understandable Haskell. category: Combinators, Functions, Utility@@ -44,7 +44,7 @@ build-depends: QuickCheck ==2.* , base <5- , doctest >=0.9 && <0.14+ , doctest >=0.9 && <0.15 , flow , template-haskell ==2.* other-modules:
package.yaml view
@@ -1,5 +1,5 @@ name: flow-version: 1.0.10+version: 1.0.11 category: Combinators, Functions, Utility description: Flow provides operators for writing more understandable Haskell.@@ -23,7 +23,7 @@ tests: test: dependencies:- - doctest >= 0.9 && < 0.14+ - doctest >= 0.9 && < 0.15 - flow - QuickCheck == 2.* - template-haskell == 2.*