Skip to content

Commit ee678a1

Browse files
committed
Merge branch 'bump-subnet-evm' into hello-world-example
2 parents aa685e1 + 0601de0 commit ee678a1

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

Diff for: .github/ISSUE_TEMPLATE/release_checklist.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Release Checklist
3+
about: Create a ticket to track a release
4+
title: ""
5+
labels: release
6+
assignees: ""
7+
---
8+
9+
**Release**
10+
The release version and a description of the planned changes to be included in the release.
11+
12+
**Issues**
13+
Link the major issues planned to be included in the release.
14+
15+
**Documentation**
16+
Link the relevant documentation PRs for this release.
17+
18+
**Checklist**
19+
20+
- [ ] Update version in scripts/versions.sh and plugin/main.go
21+
- [ ] Bump AvalancheGo dependency for RPCChainVM Compatibility
22+
- [ ] Add new entry in compatibility.json for RPCChainVM Compatibility
23+
- [ ] Update AvalancheGo compatibility in README

Diff for: README.md

+7
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,10 @@ You can create contract tests in `contracts/test` with the Hardhat test framewor
126126
## Changing Versions
127127

128128
In order to upgrade the Subnet-EVM version, you need to change the version in `go.mod` and `scripts/versions.sh`. You can also change the AvalancheGo version through `scripts/versions.sh` as well. Then you can run `./scripts/build.sh` to build the plugin with the new version.
129+
130+
## AvalancheGo Compatibility
131+
132+
```text
133+
[v0.1.0-v0.1.1] [email protected] (Protocol Version: 26)
134+
[v0.1.2] [email protected] (Protocol Version: 27)
135+
```

Diff for: compatibility.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"rpcChainVMProtocolVersion": {
3+
"v0.1.2": 27,
4+
"v0.1.1": 26,
5+
"v0.1.0": 26
6+
}
7+
}

Diff for: tests/precompile/precompile_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ import (
99

1010
ginkgo "github.com/onsi/ginkgo/v2"
1111
"github.com/onsi/gomega"
12+
"github.com/stretchr/testify/require"
1213

1314
// Import the solidity package, so that ginkgo maps out the tests declared within the package
1415
"github.com/ava-labs/precompile-evm/tests/precompile/solidity"
1516
)
1617

1718
func TestE2E(t *testing.T) {
1819
if basePath := os.Getenv("TEST_SOURCE_ROOT"); basePath != "" {
19-
os.Chdir(basePath)
20+
err := os.Chdir(basePath)
21+
require.NoError(t, err)
2022
}
2123
gomega.RegisterFailHandler(ginkgo.Fail)
2224
solidity.RegisterAsyncTests()

0 commit comments

Comments
 (0)