blockfrost-client 0.8.0.0 → 0.8.0.1
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Blockfrost.Client.Types: data AsClientT (m :: Type -> Type)
+ Blockfrost.Client.Types: data () => AsClientT (m :: Type -> Type)
- Blockfrost.Client.Types: data BlockfrostError
+ Blockfrost.Client.Types: data () => BlockfrostError
- Blockfrost.Client.Types: data Paged
+ Blockfrost.Client.Types: data () => Paged
- Blockfrost.Client.Types: data Project
+ Blockfrost.Client.Types: data () => Project
- Blockfrost.Client.Types: data SortOrder
+ Blockfrost.Client.Types: data () => SortOrder
Files
- CHANGELOG.md +4/−0
- blockfrost-client.cabal +1/−1
- src/Blockfrost/Client/IPFS.hs +2/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+# Version [0.8.0.1](https://github.com/blockfrost/blockfrost-haskell/compare/client-0.8.0.0...client-0.8.0.1) (2024-01-16)++* GHC 9.6.3 compatibility+ # Version [0.8.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/client-0.7.1.1...client-0.8.0.0) (2023-12-18) * Allow servant `0.20` [#41](https://github.com/blockfrost/blockfrost-haskell/pull/41)
blockfrost-client.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-client-version: 0.8.0.0+version: 0.8.0.1 synopsis: blockfrost.io basic client description: Simple Blockfrost clients for use with transformers or mtl homepage: https://github.com/blockfrost/blockfrost-haskell
src/Blockfrost/Client/IPFS.hs view
@@ -15,7 +15,8 @@ import Blockfrost.API import Blockfrost.Client.Types import Blockfrost.Types-import Control.Monad.Except+import Control.Monad.Except (MonadError, throwError)+import Control.Monad.IO.Class (liftIO) import Data.ByteString.Lazy (ByteString) import Data.Text (Text) import qualified Data.Text