-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump subnet-evm * nits * add issue template & compatibility table to readme * add compatibility json * check returned err * fix import path * comment out ping test
- Loading branch information
Showing
10 changed files
with
330 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Release Checklist | ||
about: Create a ticket to track a release | ||
title: "" | ||
labels: release | ||
assignees: "" | ||
--- | ||
|
||
**Release** | ||
The release version and a description of the planned changes to be included in the release. | ||
|
||
**Issues** | ||
Link the major issues planned to be included in the release. | ||
|
||
**Documentation** | ||
Link the relevant documentation PRs for this release. | ||
|
||
**Checklist** | ||
|
||
- [ ] Update version in scripts/versions.sh and plugin/main.go | ||
- [ ] Bump AvalancheGo dependency for RPCChainVM Compatibility | ||
- [ ] Add new entry in compatibility.json for RPCChainVM Compatibility | ||
- [ ] Update AvalancheGo compatibility in README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,10 @@ You can create contract tests in `contracts/test` with the Hardhat test framewor | |
## Changing Versions | ||
|
||
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. | ||
|
||
## AvalancheGo Compatibility | ||
|
||
```text | ||
[v0.1.0-v0.1.1] [email protected] (Protocol Version: 26) | ||
[v0.1.2] [email protected] (Protocol Version: 27) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rpcChainVMProtocolVersion": { | ||
"v0.1.2": 27, | ||
"v0.1.1": 26, | ||
"v0.1.0": 26 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.