Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for release #312

Merged
merged 2 commits into from
Jun 6, 2024
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
19 changes: 12 additions & 7 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@

## Unreleased

## 6.3.0

- Remove command `raw SendTransaction`.
- Remove command `transaction sign-and-submit`.
- Remove command `transaction send-shielded` to disable the transfer of CCD from the shielded balance of the account to the shielded balance of another account.
- Remove command `account shield` to disable the transfer of CCD from the public balance to the shielded balance of an account.
- Rename command `transaction submit` to `transaction sign-and-submit`.
- Add command `transaction submit` to submit a signed transaction on chain.
- Remove command `transaction send-shielded` to disable the transfer of CCD from the shielded
balance of the account to the shielded balance of another account.
- Remove command `account shield` to disable the transfer of CCD from the public balance to the
shielded balance of an account.
- Add command `transaction add-signature` to add a signature to a partially-signed transaction.
- Add optional `--out` flag to all transaction-creating commands to output a partially-singed transaction to a file.
- Revise command `transaction submit` to submit already-signed transactions to the chain.
(This is a breaking change, as transactions must now already be signed, e.g. with
`transaction add-signature`.)
- Add optional `--out` flag to all transaction-creating commands to output a partially-singed
transaction to a file.
- Update GHC version to 9.6.4 (lts-22.9).
- Update Rust version to 1.73.
- Support protocol version 7.
- Preliminary support for protocol version 7.

## 6.2.1

Expand Down
2 changes: 1 addition & 1 deletion concordium-client.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.24
-- see: https://github.com/sol/hpack

name: concordium-client
version: 6.2.1
version: 6.3.0
description: Please see the README on GitHub at <https://github.com/Concordium/concordium-client#readme>
homepage: https://github.com/Concordium/concordium-client#readme
bug-reports: https://github.com/Concordium/concordium-client/issues
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: concordium-client
version: 6.2.1
version: 6.3.0
github: "Concordium/concordium-client"
author: "Concordium"
maintainer: "[email protected]"
Expand Down Expand Up @@ -122,7 +122,7 @@ executables:
- -Wredundant-constraints
- -O
when:
- condition: ! os(windows)
- condition: ! os(windows)
# the tool deadlocks on windows when -threaded is used
ghc-options: -threaded
- condition: flag(static)
Expand Down
Loading