diff --git a/ChangeLog.md b/ChangeLog.md index 54542b9e8b2..a827d68f56d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,12 +1,18 @@ ChangeLog -## v2.60.10 (in development) +## v2.60.10 -### TODO - -Acknowledgements: - -New features: - -Fixes: +**Bugfixes:** +- Trace API: commit state changes from InitializeBlockExecution @yperbasis in [#12559](https://github.com/erigontech/erigon/pull/12559). +Prior to this PR in `callManyTransactions` (invoked by `trace_block`) +changes made by `InitializeBlockExecution` were discarded. That was immaterial before since no much was +happening at the beginning of a block. But that changed in Dencun with +[EIP-4788](https://eips.ethereum.org/EIPS/eip-4788). +Fixes Issues +[#11871](https://github.com/erigontech/erigon/issues/11871), +[#12092](https://github.com/erigontech/erigon/issues/12092), +[#12242](https://github.com/erigontech/erigon/issues/12242), +[#12432](https://github.com/erigontech/erigon/issues/12432), +[#12473](https://github.com/erigontech/erigon/issues/12473), +and [#12525](https://github.com/erigontech/erigon/issues/12525). diff --git a/params/version.go b/params/version.go index 7bc4b261ff3..4c446f970a5 100644 --- a/params/version.go +++ b/params/version.go @@ -33,7 +33,7 @@ var ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 60 // Minor version component of the current release - VersionMicro = 9 // Patch version component of the current release + VersionMicro = 10 // Patch version component of the current release VersionModifier = "" // Modifier component of the current release VersionKeyCreated = "ErigonVersionCreated" VersionKeyFinished = "ErigonVersionFinished"