packages feed

composition-prelude 1.5.0.0 → 1.5.0.1

raw patch · 4 files changed

+9/−38 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

− .travis.yml
@@ -1,18 +0,0 @@-sudo: false-language: default-cache:-  directories:-  - $HOME/.stack-addons:-    apt:-        packages:-            - libgmp3-dev-before_install:-- mkdir -p ~/.local/bin-- export PATH=$HOME/.local/bin:$PATH-- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'-- chmod a+x ~/.local/bin/stack-install:-- stack --no-terminal --install-ghc test --only-dependencies-script:-- stack --no-terminal test --bench --haddock --no-haddock-deps
composition-prelude.cabal view
@@ -1,25 +1,22 @@-cabal-version: >=1.10+cabal-version: 1.18 name: composition-prelude-version: 1.5.0.0+version: 1.5.0.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2017-2018 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale-homepage: https://github.com/vmchale/composition-prelude#readme+bug-reports: https://hub.darcs.net/vmchale/composition-prelude/issues synopsis: Higher-order function combinators description:     Replacement for `composition` or `composition-exta`, exporting everything in one module. category: Control, Data build-type: Simple-extra-source-files:-    README.md-    stack.yaml-    .travis.yml+extra-doc-files: README.md  source-repository head-    type: git-    location: https://github.com/vmchale/composition-prelude+    type: darcs+    location: https://hub.darcs.net/vmchale/composition-prelude  flag development     description:
src/Control/Composition.cpphs view
@@ -47,7 +47,7 @@ import           Control.Lens  ((<&>)) #endif #elif defined(MIN_VERSION_microlens)-#if MIN_VERSION_microlens(4,5)+#if MIN_VERSION_microlens(0,4,5) import           Lens.Micro    ((<&>)) #endif #endif@@ -73,7 +73,7 @@ infixl 1 <&> #endif #elif defined(MIN_VERSION_microlens)-#if !MIN_VERSION_microlens(4,5)+#if !MIN_VERSION_microlens(0,4,5) infixl 1 <&> #endif #else@@ -157,7 +157,7 @@ x <&> f = fmap f x #endif #elif defined(MIN_VERSION_microlens)-#if !MIN_VERSION_microlens(4,5)+#if !MIN_VERSION_microlens(0,4,5) #endif #else (<&>) :: Functor f => f a -> (a -> b) -> f b
− stack.yaml
@@ -1,8 +0,0 @@-resolver: lts-11.6-packages:-- '.'-extra-deps: []-flags:-    composition-prelude:-        development: true-extra-package-dbs: []