From 35a7bf03c38ac5ec9875ee75dab0280fdeda1972 Mon Sep 17 00:00:00 2001 From: Kartik Bhat Date: Mon, 10 Jun 2024 21:18:36 -0400 Subject: [PATCH] Add v5.5.5 upgrade (#1725) * Add v5.5.5 upgrade * Add Changelog --- CHANGELOG.md | 14 +++++++++++++- app/upgrades.go | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 133e04a12..9870edf2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,10 +26,22 @@ Types of changes (Stanzas): Ref: https://keepachangelog.com/en/1.0.0/ --> -# Changelog +# Changelog## v5.5.5 +sei-chain +* [#1726](https://github.com/sei-protocol/sei-chain/pull/1726) Handle VM error code properly +* [#1713](https://github.com/sei-protocol/sei-chain/pull/1713) RPC Get Evm Hash +* [#1711](https://github.com/sei-protocol/sei-chain/pull/1711) Add gov proposal v2 for native pointer +* [#1694](https://github.com/sei-protocol/sei-chain/pull/1694) Add native associate tx type + + +sei-cosmos +* [#511](https://github.com/sei-protocol/sei-cosmos/pull/511) Add error for evm revert + + ## v5.5.2 sei-chain * [#1685](https://github.com/sei-protocol/sei-chain/pull/1685) Add EVM support to v5.5.2 + ## v5.4.0 sei-chain * [#1671](https://github.com/sei-protocol/sei-chain/pull/1671) Update and fixes to ERC721 contract diff --git a/app/upgrades.go b/app/upgrades.go index 2a49f9acd..ad6b4798c 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -101,6 +101,7 @@ var upgradesList = []string{ "v5.5.0", "v5.5.1", "v5.5.2", + "v5.5.5", } // if there is an override list, use that instead, for integration tests