diff -Nru haskell-lifted-async-0.10.0.2/CHANGELOG.md haskell-lifted-async-0.10.0.4/CHANGELOG.md --- haskell-lifted-async-0.10.0.2/CHANGELOG.md 2018-05-13 05:52:11.000000000 +0000 +++ haskell-lifted-async-0.10.0.4/CHANGELOG.md 2001-09-09 01:46:40.000000000 +0000 @@ -1,5 +1,13 @@ # Revision history for lifted-async +## v0.10.0.4 - 2019-05-03 + +* Relax upper version bounds for base and constraints + +## v0.10.0.3 - 2018-09-25 + +* Relax upper version bound for base to support GHC 8.6.1 + ## v0.10.0.2 - 2018-05-13 * Allow test_link to fail because it's non-deterministic (#26) diff -Nru haskell-lifted-async-0.10.0.2/debian/changelog haskell-lifted-async-0.10.0.4/debian/changelog --- haskell-lifted-async-0.10.0.2/debian/changelog 2018-09-29 14:10:52.000000000 +0000 +++ haskell-lifted-async-0.10.0.4/debian/changelog 2019-08-08 12:24:43.000000000 +0000 @@ -1,3 +1,15 @@ +haskell-lifted-async (0.10.0.4-1build1) eoan; urgency=medium + + * Rebuild against new GHC abi. + + -- Gianfranco Costamagna Thu, 08 Aug 2019 14:24:43 +0200 + +haskell-lifted-async (0.10.0.4-1) unstable; urgency=medium + + * New upstream release + + -- Clint Adams Sun, 28 Jul 2019 16:02:29 -0400 + haskell-lifted-async (0.10.0.2-1) unstable; urgency=medium [ Clint Adams ] diff -Nru haskell-lifted-async-0.10.0.2/debian/control haskell-lifted-async-0.10.0.4/debian/control --- haskell-lifted-async-0.10.0.2/debian/control 2018-09-29 14:10:52.000000000 +0000 +++ haskell-lifted-async-0.10.0.4/debian/control 2019-07-28 20:02:29.000000000 +0000 @@ -15,7 +15,7 @@ libghc-async-dev (<< 2.3), libghc-async-prof, libghc-constraints-dev (>= 0.2), - libghc-constraints-dev (<< 0.11), + libghc-constraints-dev (<< 0.12), libghc-constraints-prof, libghc-lifted-base-dev (<< 0.3), libghc-lifted-base-dev (>= 0.2), diff -Nru haskell-lifted-async-0.10.0.2/lifted-async.cabal haskell-lifted-async-0.10.0.4/lifted-async.cabal --- haskell-lifted-async-0.10.0.2/lifted-async.cabal 2018-05-13 05:52:11.000000000 +0000 +++ haskell-lifted-async-0.10.0.4/lifted-async.cabal 2001-09-09 01:46:40.000000000 +0000 @@ -1,21 +1,23 @@ name: lifted-async -version: 0.10.0.2 +version: 0.10.0.4 synopsis: Run lifted IO operations asynchronously and wait for their results homepage: https://github.com/maoe/lifted-async bug-reports: https://github.com/maoe/lifted-async/issues license: BSD3 license-file: LICENSE author: Mitsutoshi Aoe -maintainer: Mitsutoshi Aoe -copyright: Copyright (C) 2012-2018 Mitsutoshi Aoe +maintainer: Mitsutoshi Aoe +copyright: Copyright (C) 2012-2019 Mitsutoshi Aoe category: Concurrency build-type: Simple cabal-version: >= 1.8 tested-with: - GHC == 8.4.1 - , GHC == 8.2.2 - , GHC == 8.0.2 - , GHC == 7.10.2 + GHC == 8.8.1 + GHC == 8.6.5 + GHC == 8.4.4 + GHC == 8.2.2 + GHC == 8.0.2 + GHC == 7.10.3 extra-source-files: README.md @@ -30,13 +32,13 @@ Control.Concurrent.Async.Lifted Control.Concurrent.Async.Lifted.Safe build-depends: - base >= 4.5 && < 4.12 + base >= 4.5 && < 4.14 , async >= 2.2 && < 2.3 , lifted-base >= 0.2 && < 0.3 , transformers-base >= 0.4 && < 0.5 , monad-control == 1.0.* if impl(ghc >= 7.8) - build-depends: constraints >= 0.2 && < 0.11 + build-depends: constraints >= 0.2 && < 0.12 else build-depends: constraints >= 0.2 && < 0.6 ghc-options: -Wall