blockfrost-api 0.4.0.1 → 0.5.0.0
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- blockfrost-api.cabal +1/−1
- src/Blockfrost/API/Cardano/Epochs.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+# Version [0.5.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/v0.4.0.1...v0.5.0.0) (2022-06-06)++* Fix return type of `_getEpochStakeByPool` from `StakeDistribution` to `PoolStakeDistribution`+ # Version [0.4.0.1](https://github.com/blockfrost/blockfrost-haskell/compare/v0.4.0.0...v0.4.0.1) (2022-04-05) * Allow servant `0.19`
blockfrost-api.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-api-version: 0.4.0.1+version: 0.5.0.0 synopsis: API definitions for blockfrost.io description: Core types and Servant API description homepage: https://github.com/blockfrost/blockfrost-haskell
src/Blockfrost/API/Cardano/Epochs.hs view
@@ -67,7 +67,7 @@ :> "stakes" :> Capture "pool_id" PoolId :> Pagination- :> Get '[JSON] [StakeDistribution]+ :> Get '[JSON] [PoolStakeDistribution] , _getEpochBlocks :: route :- Summary "Block distribution"