packages feed

bluesky-tools 0.2.0.0 → 0.2.2.0

raw patch · 3 files changed

+9/−2 lines, 3 filesdep +async

Dependencies added: async

Files

CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for bluesky-tools +## 0.2.2.0 -- 2024-01-05++* Fix build error+* Export unintentionally-hidden BothFailed+ ## 0.2.0.0 -- 2024-01-05  * Handle type, smart constructor, and tests.
bluesky-tools.cabal view
@@ -1,7 +1,7 @@ cabal-version:      3.4  name:               bluesky-tools-version:            0.2.0.0+version:            0.2.2.0 synopsis:           Tools for interacting with Bluesky / AT Protocol description:   bluesky-tools provides tools that I've found useful while trying to integrate@@ -44,6 +44,7 @@   -- other-modules:   build-depends:     aeson ^>=2.1,+    async ^>=2.2,     base ^>=4.18,     dns ^>=4.2,     http-api-data ^>=0.6,
src/Bluesky/Handle.hs view
@@ -1,6 +1,7 @@ module Bluesky.Handle   ( Handle, rawHandle, makeHandle, HandleError(..), validTld-  , resolveViaDns, resolveViaHttp, resolveViaBoth, resolveVerify+  , resolveViaDns, resolveViaHttp, resolveViaBoth, BothFailed(..)+  , resolveVerify   ) where  import qualified Control.Concurrent.Async as Async