Skip to content

Commit

Permalink
Merge pull request #828 from IntersectMBO/release/cardano-cli-9.0.0.1
Browse files Browse the repository at this point in the history
Release 9.0.0.1
  • Loading branch information
CarlosLopezDeLara authored Jul 9, 2024
2 parents 6a1070b + 33059ee commit 7fc7446
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions cardano-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog for cardano-cli

## 9.0.0.1

- transaction-build and build-estimate: include current treasury value only if a donation is being done
(breaking)
[PR 826](https://github.com/IntersectMBO/cardano-cli/pull/826)

- Fix typo in committee help and error messages
(compatible)
[PR 820](https://github.com/IntersectMBO/cardano-cli/pull/820)

## 9.0.0.0

- Add --hot-script-hash option to committee create-hot-key-authorization-certificate subcommand
Expand Down
2 changes: 1 addition & 1 deletion cardano-cli/cardano-cli.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.4

name: cardano-cli
version: 9.0.0.0
version: 9.0.0.1
synopsis: The Cardano command-line interface
description: The Cardano command-line interface.
copyright: 2020-2023 Input Output Global Inc (IOG).
Expand Down
6 changes: 3 additions & 3 deletions cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ pTransferAmt =
rHexHash :: ()
=> SerialiseAsRawBytes (Hash a)
=> AsType a
-> Maybe String -- | Optional prefix to the error message
-> Maybe String -- ^ Optional prefix to the error message
-> ReadM (Hash a)
rHexHash a mErrPrefix =
Opt.eitherReader $
Expand Down Expand Up @@ -560,8 +560,8 @@ pGenesisDelegateVerificationKey =
-- | Reader for verification keys
rVerificationKey :: ()
=> SerialiseAsRawBytes (VerificationKey a)
=> AsType a -- | Singleton value identifying the kind of verification keys
-> Maybe String -- | Optional prefix to the error message
=> AsType a -- ^ Singleton value identifying the kind of verification keys
-> Maybe String -- ^ Optional prefix to the error message
-> ReadM (VerificationKey a)
rVerificationKey a mErrPrefix =
Opt.eitherReader $ first
Expand Down

0 comments on commit 7fc7446

Please sign in to comment.