blockfrost-client-core 0.6.0.0 → 0.6.0.1
raw patch · 3 files changed
+7/−2 lines, 3 filesdep ~servant
Dependency ranges changed: servant
Files
- CHANGELOG.md +4/−0
- blockfrost-client-core.cabal +2/−2
- src/Blockfrost/Client/Core.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# Version [0.6.0.1](https://github.com/blockfrost/blockfrost-haskell/compare/v0.6.0.0...client-core-0.6.0.1) (2024-01-16)++* Allow servant `0.20`+ # Version [0.6.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/v0.5.0.0...v0.6.0.0) (2022-08-31) * Additions
blockfrost-client-core.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-client-core-version: 0.6.0.0+version: 0.6.0.1 synopsis: blockfrost.io common client definitions / instances description: HasClient for our auth homepage: https://github.com/blockfrost/blockfrost-haskell@@ -53,7 +53,7 @@ , http-client , http-client-tls , http-types- , servant >= 0.18 && < 0.20+ , servant >= 0.18 && < 0.21 , servant-client , servant-client-core , servant-multipart-api
src/Blockfrost/Client/Core.hs view
@@ -69,6 +69,7 @@ subdomainByEnv Testnet = pure "cardano-testnet" subdomainByEnv Preprod = pure "cardano-preprod" subdomainByEnv Preview = pure "cardano-preview"+subdomainByEnv Sanchonet = pure "cardano-sanchonet" subdomainByEnv Localhost = Nothing -- | Read file according to BLOCKFROST_TOKEN_PATH environment variable name.