Skip to content

Commit

Permalink
Version, changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Oct 19, 2023
1 parent 5591bd6 commit 32f9821
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Revise client's reconnect handling so that the client will no longer attempt
to automatically reconnect on timeouts and node resource exhaustion.

## 6.1.0

- Add `baker win-time` command for determining the earliest time a specified baker is expected to
Expand Down
4 changes: 2 additions & 2 deletions concordium-client.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.24

-- This file has been generated from package.yaml by hpack version 0.35.1.
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack

name: concordium-client
version: 6.1.0
version: 6.1.1
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
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: concordium-client
version: 6.1.0
version: 6.1.1
github: "Concordium/concordium-client"
author: "Concordium"
maintainer: "[email protected]"
Expand Down
5 changes: 3 additions & 2 deletions src/Concordium/Client/Runner/Helper.hs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@ toGRPCResult' =
let hs = map (\(hn, hv) -> (CI.mk hn, hv)) hds
in StatusOk (GRPCResponse hs t)

-- |A helper type to indicate whether a failed RPC call should be retried or
-- not. This is used internally by the @withUnary@ method.

-- | A helper type to indicate whether a failed RPC call should be retried or
-- not. This is used internally by the @withUnary@ method.
data Retry a
= Retry
| -- | A call failed with the given 'GRPCResult', and will not be retried.
Expand Down

0 comments on commit 32f9821

Please sign in to comment.