diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b0b51..9497285 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.0.1] + +### Added +- New error type `PrivacyPolicyError` + ## [0.7.0.0] - Implement `wagyu-zcash-parameters` in Rust bindings diff --git a/src/ZcashHaskell/Types.hs b/src/ZcashHaskell/Types.hs index 9884b7f..abfb334 100644 --- a/src/ZcashHaskell/Types.hs +++ b/src/ZcashHaskell/Types.hs @@ -791,6 +791,7 @@ data TxError | OrchardRecipient | SaplingBuilderNotAvailable | OrchardBuilderNotAvailable + | PrivacyPolicyError !T.Text | ZHError deriving (Eq, Prelude.Show, Read) diff --git a/zcash-haskell.cabal b/zcash-haskell.cabal index 2794c6c..9cf7abd 100644 --- a/zcash-haskell.cabal +++ b/zcash-haskell.cabal @@ -5,7 +5,7 @@ cabal-version: 3.0 -- see: https://github.com/sol/hpack name: zcash-haskell -version: 0.7.0.0 +version: 0.7.0.1 synopsis: Utilities to interact with the Zcash blockchain description: Please see the README on the repo at category: Blockchain