Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions blockfrost-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion blockfrost-api/blockfrost-api.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 10 additions & 1 deletion blockfrost-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions blockfrost-client/blockfrost-client.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down