Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Upgrade] Go-Ethereum release v1.9.21 #4

Closed
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
fc20680
params: begin v1.9.21 release cycle
fjl Aug 25, 2020
92b12ee
accounts/abi/bind/backends: Disallow AdjustTime for non-empty blocks …
MariusVanDerWijden Aug 26, 2020
d8da0b3
core/state, eth, trie: stabilize memory use, fix memory leak
karalabe Aug 26, 2020
16d7eae
eth: updated comments (#21490)
MariusVanDerWijden Aug 26, 2020
856307d
go.mod | goleveldb latest update (#21448)
ucwong Aug 26, 2020
d97e006
Merge pull request #21491 from karalabe/state-sync-leak-fix
karalabe Aug 27, 2020
05280a7
eth/tracers: revert reason in call_tracer + error for failed internal…
libotony Aug 27, 2020
5883afb
rpc: fix issue with null JSON-RPC messages (#21497)
fjl Aug 28, 2020
12d8570
accounts/abi: fix a bug in getTypeSize method (#21501)
tofudfy Sep 1, 2020
ff23e26
internal: fix personal.sign() (#21503)
de1acr0ix Sep 1, 2020
5cdb476
"Downloader queue stats" is now provided once per minute (#21455)
Neurone Sep 1, 2020
d90bbce
go.mod : update goja dependency (#21432)
ucwong Sep 1, 2020
3010f9f
eth/downloader: change intial download size (#21366)
holiman Sep 2, 2020
eeaf191
core, eth, trie: prepare trie sync for path based operation
karalabe Aug 28, 2020
f86324e
Merge pull request #21504 from karalabe/trie-path-sync
karalabe Sep 2, 2020
de971cc
eth: added trace_call to trace on top of arbitrary blocks (#21338)
MariusVanDerWijden Sep 7, 2020
c5d28f0
accounts: abi/bid/backends; cleaned doc errors, camelCase refactors a…
muse254 Sep 7, 2020
d54f2f2
whisper: remove whisper (#21487)
gballet Sep 8, 2020
8327d1f
accounts/usbwallet, signer/core: show accounts from ledger legacy der…
holiman Sep 8, 2020
066c755
build: remove wnode from the list of packages binaries (#21526)
gballet Sep 8, 2020
86bcbb0
.github: remove whisper from CODEOWNERS (#21527)
gballet Sep 8, 2020
dc681fc
params: update CHTs for v1.9.21 release
karalabe Sep 9, 2020
24562d9
Merge pull request #21534 from karalabe/cht-1.9.21
karalabe Sep 9, 2020
0287d54
params: release Geth v1.9.21
karalabe Sep 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
params: release Geth v1.9.21
  • Loading branch information
karalabe committed Sep 9, 2020
commit 0287d54847d3297f3ced62cd83a4c95ccbe0045b
8 changes: 4 additions & 4 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 9 // Minor version component of the current release
VersionPatch = 21 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
VersionMajor = 1 // Major version component of the current release
VersionMinor = 9 // Minor version component of the current release
VersionPatch = 21 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
)

// Version holds the textual version string.
Expand Down