Skip to content

Commit

Permalink
Update cardano-cli changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
newhoggy committed May 31, 2023
1 parent 033920a commit fa352fa
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
21 changes: 20 additions & 1 deletion cardano-cli/CHANGELOG.md
Expand Up @@ -2,7 +2,26 @@

## 8.1.0

-
- Delete deprecated shelley command group
([PR5264](https://github.com/input-output-hk/cardano-node/pull/5264))

- Use cardano-api from CHaP
([PR5047](https://github.com/input-output-hk/cardano-node/pull/5047))

- Implement deposit handling when balancing transactions
([PR5218](https://github.com/input-output-hk/cardano-node/pull/5218))

- Make `renderScriptWitnessIndex` output more explicit. This means
slightly improved error messages for failed script execution
errors.
([PR5221](https://github.com/input-output-hk/cardano-node/pull/5221))

- `--socket-path` option works across all commands
([PR5207](https://github.com/input-output-hk/cardano-node/pull/5207))

- Fix `toEraInMode` for conway. This means for example that `query utxo`
works in Conway.
([PR5175](https://github.com/input-output-hk/cardano-node/pull/5175))

## 8.0.0 -- May 2023

Expand Down
7 changes: 6 additions & 1 deletion cardano-node/app/cardano-node.hs
Expand Up @@ -20,8 +20,13 @@ import Cardano.Node.Run (runNode)
import Cardano.Node.Tracing.Documentation (TraceDocumentationCmd (..),
parseTraceDocumentationCmd, runTraceDocumentationCmd)

import qualified Cardano.Crypto.Init as Crypto

main :: IO ()
main = toplevelExceptionHandler $ do
main = do
Crypto.cryptoInit

toplevelExceptionHandler $ do

cmd <- Opt.customExecParser p opts

Expand Down

0 comments on commit fa352fa

Please sign in to comment.