v0.37.1
Note: Requies Go 1.13+
Features
- (cli) #4973 Enable application CPU profiling via the
--cpu-profile
flag. - #4979 Introduce a new
halt-time
config and CLI option to thestart
command. When provided, an application will halt duringCommit
when the block time is >= thehalt-time
.
Improvements
- #4990 Add
Events
to theABCIMessageLog
to provide context and grouping of events based on the messages they correspond to. TheEvents
field inTxResponse
is deprecated and will be removed in the next major release.
Bug Fixes
- #4979 Use
Signal(os.Interrupt)
overos.Exit(0)
during configured halting to allow anydefer
calls to be executed.