From f4979eec68d5d61ebd74e3c3ac63c6c7e17c928e Mon Sep 17 00:00:00 2001 From: sorki Date: Mon, 2 Feb 2026 16:36:55 +0100 Subject: [PATCH 1/2] api: Release 0.15.0.0 --- blockfrost-api/CHANGELOG.md | 10 ++++++++-- blockfrost-api/blockfrost-api.cabal | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/blockfrost-api/CHANGELOG.md b/blockfrost-api/CHANGELOG.md index 8ac81f7..54f7bc8 100644 --- a/blockfrost-api/CHANGELOG.md +++ b/blockfrost-api/CHANGELOG.md @@ -1,7 +1,13 @@ -# Version [next](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.14.0.0...master) (2025-MM-DD) +# Version [0.15.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.14.0.0...api-0.15.0.0) (2026-02-02) * Changes - * Fix `MempoolUTxOInput` `address` field from `Text` to `Maybe Text` [#83](https://github.com/blockfrost/blockfrost-haskell/issues/83) [#84](https://github.com/blockfrost/blockfrost-haskell/issues/84) + * Fix `MempoolUTxOInput` `address` field from `Text` to `Maybe Text` [#83](https://github.com/blockfrost/blockfrost-haskell/issues/83) [#84](https://github.com/blockfrost/blockfrost-haskell/pull/84) + * Mempool API functions adjusted to not require passing in `Project` [#85](https://github.com/blockfrost/blockfrost-haskell/pull/85) + * Previous `getMempoolTransactions prj def def` is now simply `getMempoolTransactions` and a principled + variant `getMempoolTransactions'` is provided accepting page and sort order parameters + (for example `allPages $ \p -> getMempoolTransactions' p def`). + * Similar for `getMempoolTransactionsByAddress`. + * `getMempoolTransaction` now simply doesn't require passing `Project` # Version [0.14.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.13.0.0...api-0.14.0.0) (2025-12-02) diff --git a/blockfrost-api/blockfrost-api.cabal b/blockfrost-api/blockfrost-api.cabal index b07e67a..a3d948d 100644 --- a/blockfrost-api/blockfrost-api.cabal +++ b/blockfrost-api/blockfrost-api.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-api -version: 0.14.0.0 +version: 0.15.0.0 synopsis: API definitions for blockfrost.io description: Core types and Servant API description homepage: https://github.com/blockfrost/blockfrost-haskell From 8ed71b39f96abd40d0b7ecccbd4c02ae76114627 Mon Sep 17 00:00:00 2001 From: sorki Date: Mon, 2 Feb 2026 16:37:07 +0100 Subject: [PATCH 2/2] client: Release 0.12.0.0 --- blockfrost-client/CHANGELOG.md | 11 ++++++++++- blockfrost-client/blockfrost-client.cabal | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/blockfrost-client/CHANGELOG.md b/blockfrost-client/CHANGELOG.md index 1d7c8e1..0b0e568 100644 --- a/blockfrost-client/CHANGELOG.md +++ b/blockfrost-client/CHANGELOG.md @@ -1,4 +1,13 @@ -# Version [next](https://github.com/blockfrost/blockfrost-haskell/compare/client-0.11.0.0...master) (2025-MM-DD) +# Version [0.12.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/client-0.11.0.0...client-0.12.0.0) (2026-02-02) + +* Changes + * Fix `MempoolUTxOInput` `address` field from `Text` to `Maybe Text` [#83](https://github.com/blockfrost/blockfrost-haskell/issues/83) [#84](https://github.com/blockfrost/blockfrost-haskell/pull/84) + * Mempool API functions adjusted to not require passing in `Project` [#85](https://github.com/blockfrost/blockfrost-haskell/pull/85) + * Previous `getMempoolTransactions prj def def` is now simply `getMempoolTransactions` and a principled + variant `getMempoolTransactions'` is provided accepting page and sort order parameters + (for example `allPages $ \p -> getMempoolTransactions' p def`). + * Similar for `getMempoolTransactionsByAddress`. + * `getMempoolTransaction` now simply doesn't require passing `Project` # Version [0.11.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/client-0.10.0.0...client-0.11.0.0) (2025-12-02) diff --git a/blockfrost-client/blockfrost-client.cabal b/blockfrost-client/blockfrost-client.cabal index 20d8fc3..81008eb 100644 --- a/blockfrost-client/blockfrost-client.cabal +++ b/blockfrost-client/blockfrost-client.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-client -version: 0.11.0.0 +version: 0.12.0.0 synopsis: blockfrost.io basic client description: Simple Blockfrost clients for use with transformers or mtl homepage: https://github.com/blockfrost/blockfrost-haskell @@ -69,7 +69,7 @@ library , Blockfrost.Client.IPFS , Blockfrost.Client.NutLink build-depends: base >= 4.7 && < 5 - , blockfrost-api >= 0.14 + , blockfrost-api >= 0.15 , blockfrost-client-core ^>= 0.7 , bytestring , directory