diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb1ae8..102a5b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ +1.0.4: + - retain existing validator list if an attempted refresh returns no results + - avoid crash when a Vouch cannot obtain the RANDAO reveal for a block proposal + 1.0.3: - update go-eth2-client to avoid crash with Lighthouse 1.0.4+ - metric 'vouch_attestation_process_duration_seconds' now counts multiple attestations correctly - re-implement accountmanager metrics + 1.0.2: - avoid crash in "best" attestationdata strategy + 1.0.1: - include source and target epochs when scoring attestation data diff --git a/main.go b/main.go index a7d8781..845b9ec 100644 --- a/main.go +++ b/main.go @@ -75,7 +75,7 @@ import ( ) // ReleaseVersion is the release version for the code. -var ReleaseVersion = "1.0.3" +var ReleaseVersion = "1.0.4" func main() { os.Exit(main2())