Skip to content

Commit

Permalink
Bump to version 1.32.1
Browse files Browse the repository at this point in the history
Update the changelogs to mention the startup time.
  • Loading branch information
nc6 committed Dec 8, 2021
1 parent a6c4006 commit 4f65fb9
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 18 deletions.
2 changes: 1 addition & 1 deletion bench/cardano-topology/cardano-topology.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-topology
version: 1.32.0
version: 1.32.1
description: A cardano topology generator
author: IOHK
maintainer: operations@iohk.io
Expand Down
2 changes: 1 addition & 1 deletion cardano-api/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog for cardano-api

## 1.32.0 -- November 2021
## 1.32.1 -- November 2021

- Asset names are now rendered in a more consistent fashion in JSON output.
Previously names which happened to be valid ASCII were rendered as such, and
Expand Down
2 changes: 1 addition & 1 deletion cardano-api/cardano-api.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-api
version: 1.32.0
version: 1.32.1
description: The cardano api
author: IOHK
maintainer: operations@iohk.io
Expand Down
16 changes: 10 additions & 6 deletions cardano-cli/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog for cardano-cli

## 1.32.0 -- November 2021
## 1.32.1 -- November 2021

- Default CLI commands to the Alonzo era. (#3339)
- Add defaults for building the Alonzo genesis. (#3346)
Expand All @@ -13,10 +13,12 @@
- Use the new `GetChainBlockNo` and `GetChainPoint` queries in the query tip
command. There is a fallback to the older method using the full chain sync
query. (#3179)
- Allow provision of optional datums to a transaction using the CLI option `--tx-out-datum-embed-value`. This mechanism
can for example be used to provide the actual script locking an output, for use when spending it. (#3171)
- Allow provision of optional datums to a transaction using the CLI option
`--tx-out-datum-embed-value`. This mechanism can for example be used to
provide the actual script locking an output, for use when spending it. (#3171)
- Fix the use of withdrawls using the `transaction build` command. (#3317)
- Allow extended payment keys to be specified as a Plutus required signer. (#3319)
- Allow extended payment keys to be specified as a Plutus required signer.
(#3319)

## 1.30.0 -- September 2021

Expand Down Expand Up @@ -54,8 +56,10 @@
- Make the CLI help text more nicely formatted. (#2945)
- Introduce the `--script-valid` and `--script-invalid` flags. The latter can be
used to mark a script as being known invalid, such that the node will allow it
to be submitted anyway (whereas under normal operation it would reject such a transaction in order to avoid loss of collateral). This flag is only likely to be of use in testing.
The `--script-valid` flag is set as a default. (#3050, #3091, #3093)
to be submitted anyway (whereas under normal operation it would reject such a
transaction in order to avoid loss of collateral). This flag is only likely to
be of use in testing. The `--script-valid` flag is set as a default. (#3050,
#3091, #3093)
- Add colours to the CLI output. (#3023)
## 1.28.0 -- July 2021

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.0

name: cardano-cli
version: 1.32.0
version: 1.32.1
description: The Cardano command-line interface.
author: IOHK
maintainer: operations@iohk.io
Expand Down
2 changes: 1 addition & 1 deletion cardano-node-chairman/cardano-node-chairman.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-node-chairman
version: 1.32.0
version: 1.32.1
description: The cardano full node
author: IOHK
maintainer: operations@iohk.io
Expand Down
25 changes: 23 additions & 2 deletions cardano-node/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog for cardano-node

## 1.32.0 -- November 2021
## 1.32.1 -- November 2021

### node changes

Expand All @@ -11,7 +11,28 @@
- Update a bunch of scripts to use the $NETWORK_MAGIC environment variable.
(#3148)
- Integrate p2p networking functionality. (#3363)
- Add additional logging to node startup. (#3380)
- Add additional logging to node startup. Note that the existing "nodeStartTime"
counter still exists, but will ultimately be deprecated. The startup time is
now logged in the following format:
```
{
"thread": "5",
"sev": "Notice",
"data": {
"startupTime": "1638866965"
},
"loc": null,
"env": "1.31.0:be123",
"msg": "",
"app": [],
"host": "waldorf",
"at": "2021-12-07T08:49:24.22Z",
"ns": [
"cardano.node.nodeconfig"
],
"pid": "33952"
}
``` (#3380)
- Block delay counters are now not collected until the node has finished
starting. Statistics collected during node startup would only add noise to the
delay CDF. (#3386)
Expand Down
2 changes: 1 addition & 1 deletion cardano-node/cardano-node.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-node
version: 1.32.0
version: 1.32.1
description: The cardano full node
author: IOHK
maintainer: operations@iohk.io
Expand Down
2 changes: 1 addition & 1 deletion cardano-testnet/cardano-testnet.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-testnet
version: 1.32.0
version: 1.32.1
description: The cardano full node
author: IOHK
maintainer: operations@iohk.io
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.5"

services:
cardano-node:
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.32.0}
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.32.1}
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
Expand All @@ -15,7 +15,7 @@ services:
max-file: "10"

cardano-submit-api:
image: inputoutput/cardano-submit-api:${CARDANO_SUBMIT_API_VERSION:-1.32.0}
image: inputoutput/cardano-submit-api:${CARDANO_SUBMIT_API_VERSION:-1.32.1}
environment:
- NETWORK=${NETWORK:-mainnet}
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion plutus-example/plutus-example/plutus-example.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: plutus-example
version: 1.32.0
version: 1.32.1
description: End to end examples of creating and executing Plutus scripts.
author: IOHK
maintainer: operations@iohk.io
Expand Down

0 comments on commit 4f65fb9

Please sign in to comment.