lifted-async 0.10.2.5 → 0.10.2.6
raw patch · 2 files changed
+12/−8 lines, 2 filesdep ~basedep ~tasty-benchPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, tasty-bench
API changes (from Hackage documentation)
- Control.Concurrent.Async.Lifted: data Async a
+ Control.Concurrent.Async.Lifted: data () => Async a
- Control.Concurrent.Async.Lifted: data AsyncCancelled
+ Control.Concurrent.Async.Lifted: data () => AsyncCancelled
- Control.Concurrent.Async.Lifted: data ExceptionInLinkedThread
+ Control.Concurrent.Async.Lifted: data () => ExceptionInLinkedThread
- Control.Concurrent.Async.Lifted.Safe: data Async a
+ Control.Concurrent.Async.Lifted.Safe: data () => Async a
- Control.Concurrent.Async.Lifted.Safe: data AsyncCancelled
+ Control.Concurrent.Async.Lifted.Safe: data () => AsyncCancelled
- Control.Concurrent.Async.Lifted.Safe: data ExceptionInLinkedThread
+ Control.Concurrent.Async.Lifted.Safe: data () => ExceptionInLinkedThread
Files
- CHANGELOG.md +4/−0
- lifted-async.cabal +8/−8
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for lifted-async +## v0.10.2.6 - 2024-10-05++* Allow base-4.20, bump CI to GHC 9.10.1 (([#44](https://github.com/maoe/lifted-async/issues/44)))+ ## v0.10.2.5 - 2023-11-11 * Support GHC 9.8 ([#42](https://github.com/maoe/lifted-async/issues/42))
lifted-async.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.24 name: lifted-async-version: 0.10.2.5+version: 0.10.2.6 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@@ -8,13 +8,14 @@ license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <me@maoe.name>-copyright: Copyright (C) 2012-2023 Mitsutoshi Aoe+copyright: Copyright (C) 2012-2024 Mitsutoshi Aoe category: Concurrency build-type: Simple tested-with:- GHC == 9.8.1- GHC == 9.6.3- GHC == 9.4.7+ GHC == 9.10.1+ GHC == 9.8.2+ GHC == 9.6.6+ GHC == 9.4.8 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7@@ -23,9 +24,8 @@ GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2- GHC == 7.10.3 -extra-source-files:+extra-doc-files: README.md CHANGELOG.md @@ -38,7 +38,7 @@ Control.Concurrent.Async.Lifted Control.Concurrent.Async.Lifted.Safe build-depends:- base >= 4.5 && < 4.20+ base >= 4.5 && < 4.21 , async >= 2.2 && < 2.3 , lifted-base >= 0.2 && < 0.3 , transformers-base >= 0.4 && < 0.5