Skip to content

Commit 4f65fb9

Browse files
committed
Bump to version 1.32.1
Update the changelogs to mention the startup time.
1 parent a6c4006 commit 4f65fb9

File tree

11 files changed

+43
-18
lines changed

11 files changed

+43
-18
lines changed

bench/cardano-topology/cardano-topology.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-topology
4-
version: 1.32.0
4+
version: 1.32.1
55
description: A cardano topology generator
66
author: IOHK
77
maintainer: [email protected]

cardano-api/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog for cardano-api
22

3-
## 1.32.0 -- November 2021
3+
## 1.32.1 -- November 2021
44

55
- Asset names are now rendered in a more consistent fashion in JSON output.
66
Previously names which happened to be valid ASCII were rendered as such, and

cardano-api/cardano-api.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-api
4-
version: 1.32.0
4+
version: 1.32.1
55
description: The cardano api
66
author: IOHK
77
maintainer: [email protected]

cardano-cli/ChangeLog.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog for cardano-cli
22

3-
## 1.32.0 -- November 2021
3+
## 1.32.1 -- November 2021
44

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

2123
## 1.30.0 -- September 2021
2224

@@ -54,8 +56,10 @@
5456
- Make the CLI help text more nicely formatted. (#2945)
5557
- Introduce the `--script-valid` and `--script-invalid` flags. The latter can be
5658
used to mark a script as being known invalid, such that the node will allow it
57-
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.
58-
The `--script-valid` flag is set as a default. (#3050, #3091, #3093)
59+
to be submitted anyway (whereas under normal operation it would reject such a
60+
transaction in order to avoid loss of collateral). This flag is only likely to
61+
be of use in testing. The `--script-valid` flag is set as a default. (#3050,
62+
#3091, #3093)
5963
- Add colours to the CLI output. (#3023)
6064
## 1.28.0 -- July 2021
6165

cardano-cli/cardano-cli.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-cli
4-
version: 1.32.0
4+
version: 1.32.1
55
description: The Cardano command-line interface.
66
author: IOHK
77
maintainer: [email protected]

cardano-node-chairman/cardano-node-chairman.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-node-chairman
4-
version: 1.32.0
4+
version: 1.32.1
55
description: The cardano full node
66
author: IOHK
77
maintainer: [email protected]

cardano-node/ChangeLog.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog for cardano-node
22

3-
## 1.32.0 -- November 2021
3+
## 1.32.1 -- November 2021
44

55
### node changes
66

@@ -11,7 +11,28 @@
1111
- Update a bunch of scripts to use the $NETWORK_MAGIC environment variable.
1212
(#3148)
1313
- Integrate p2p networking functionality. (#3363)
14-
- Add additional logging to node startup. (#3380)
14+
- Add additional logging to node startup. Note that the existing "nodeStartTime"
15+
counter still exists, but will ultimately be deprecated. The startup time is
16+
now logged in the following format:
17+
```
18+
{
19+
"thread": "5",
20+
"sev": "Notice",
21+
"data": {
22+
"startupTime": "1638866965"
23+
},
24+
"loc": null,
25+
"env": "1.31.0:be123",
26+
"msg": "",
27+
"app": [],
28+
"host": "waldorf",
29+
"at": "2021-12-07T08:49:24.22Z",
30+
"ns": [
31+
"cardano.node.nodeconfig"
32+
],
33+
"pid": "33952"
34+
}
35+
``` (#3380)
1536
- Block delay counters are now not collected until the node has finished
1637
starting. Statistics collected during node startup would only add noise to the
1738
delay CDF. (#3386)

cardano-node/cardano-node.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-node
4-
version: 1.32.0
4+
version: 1.32.1
55
description: The cardano full node
66
author: IOHK
77
maintainer: [email protected]

cardano-testnet/cardano-testnet.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-testnet
4-
version: 1.32.0
4+
version: 1.32.1
55
description: The cardano full node
66
author: IOHK
77
maintainer: [email protected]

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.5"
22

33
services:
44
cardano-node:
5-
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.32.0}
5+
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.32.1}
66
environment:
77
- NETWORK=${NETWORK:-mainnet}
88
volumes:
@@ -15,7 +15,7 @@ services:
1515
max-file: "10"
1616

1717
cardano-submit-api:
18-
image: inputoutput/cardano-submit-api:${CARDANO_SUBMIT_API_VERSION:-1.32.0}
18+
image: inputoutput/cardano-submit-api:${CARDANO_SUBMIT_API_VERSION:-1.32.1}
1919
environment:
2020
- NETWORK=${NETWORK:-mainnet}
2121
depends_on:

plutus-example/plutus-example/plutus-example.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: plutus-example
4-
version: 1.32.0
4+
version: 1.32.1
55
description: End to end examples of creating and executing Plutus scripts.
66
author: IOHK
77
maintainer: [email protected]

0 commit comments

Comments
 (0)