Skip to content

Commit a4c71b1

Browse files
authored
bump version to v0.7.2 (#1467)
1 parent fdb279d commit a4c71b1

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

.github/ISSUE_TEMPLATE/release_checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Link the relevant documentation PRs for this release.
2626
- [ ] Update AvalancheGo dependency in scripts/versions.sh for e2e tests.
2727
- [ ] Add new entry in compatibility.json for RPCChainVM Compatibility
2828
- [ ] Update AvalancheGo compatibility in README
29-
- [ ] Deploy to WAGMI
29+
- [ ] Deploy to Echo/Dispatch
3030
- [ ] Confirm goreleaser job has successfully generated binaries by checking the releases page

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
2020
```text
2121
[v0.7.0] [email protected] (Protocol Version: 38)
2222
[v0.7.1] [email protected] (Protocol Version: 39)
23+
[v0.7.2] [email protected] (Protocol Version: 39)
2324
```
2425

2526
## API

RELEASES.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,25 @@
33
## Pending Release
44
* Bump golang version to v1.23.6
55
* Bump golangci-lint to v1.63 and add linters
6-
* Refactored trie_prefetcher.go to be structurally similar to upstream.
7-
* Remove legacy gossip handler and metrics
86
* Fixed concurrency issue in validators/uptime manager
97

8+
## [v0.7.1](https://github.com/ava-labs/subnet-evm/releases/tag/v0.7.1)
9+
10+
This release focuses on code quality improvements and post-Etna cleanups.
11+
12+
### Compatibility
13+
14+
The plugin version is **updated** to 39 and is compatible with AvalancheGo version v1.12.2.
15+
16+
### Updates
17+
18+
* Moved client type and structs to new `plugin/evm/client` package
19+
* Fixed statedb improper copy issue
20+
* Limited the maximum number of query-able rewardPercentile by 100 in `eth_feeHistory` API
21+
* Refactored `trie_prefetcher.go` to be structurally similar to upstream
22+
* Removed deprecated legacy gossip handler and metrics
23+
* Removed unnecessary locks in mempool
24+
1025
## [v0.7.0](https://github.com/ava-labs/subnet-evm/releases/tag/v0.7.0)
1126

1227
### Updates

compatibility.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"rpcChainVMProtocolVersion": {
3+
"v0.7.2": 39,
34
"v0.7.1": 39,
45
"v0.7.0": 38
56
}

plugin/evm/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var (
1111
// GitCommit is set by the build script
1212
GitCommit string
1313
// Version is the version of Subnet EVM
14-
Version string = "v0.7.1"
14+
Version string = "v0.7.2"
1515
)
1616

1717
func init() {

0 commit comments

Comments
 (0)