Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## Pending Release
## [v0.7.10](https://github.com/ava-labs/subnet-evm/releases/tag/v0.7.10)

- Add pending releases here

Expand Down
1 change: 1 addition & 0 deletions compatibility.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"rpcChainVMProtocolVersion": {
"v0.7.10": 43,
"v0.7.9": 43,
"v0.7.8": 43,
"v0.7.7": 42,
Expand Down
13 changes: 10 additions & 3 deletions docs/releasing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Remember to use the appropriate versioning for your release.
1. Create your branch, usually from the tip of the `master` branch:

```bash
git fetch origin master:master
git fetch origin master
git checkout master
git checkout -b "releases/$VERSION_RC"
```
Expand Down Expand Up @@ -93,7 +93,7 @@ Remember to use the appropriate versioning for your release.
11. Create and push a tag from the `master` branch:

```bash
git fetch origin master:master
git fetch origin master
git checkout master
# Double check the tip of the master branch is the expected commit
# of the squashed release branch
Expand Down Expand Up @@ -388,7 +388,7 @@ export P_VERSION=v0.7.4
```
1. Create a branch, from the tip of the `master` branch after the release PR has been merged:
```bash
git fetch origin master:master
git fetch origin master
git checkout master
git checkout -b "prep-$P_VERSION-release"
```
Expand All @@ -414,6 +414,13 @@ export P_VERSION=v0.7.4
```

This message can help you figure out what the correct RPC chain VM protocol version (here `39`) has to be in compatibility.json for your current release. Alternatively, you can refer to the [Avalanchego repository `version/compatibility.json` file](https://github.com/ava-labs/avalanchego/blob/main/version/compatibility.json) to find the RPC chain VM protocol version matching the AvalancheGo version we use here.
1. Commit your changes and push the branch

```bash
git add .
git commit -S -m "chore: prep release $P_VERSION"
git push -u origin "prep-$P_VERSION-release"
```
1. Create a pull request (PR) from your branch targeting master, for example using [`gh`](https://cli.github.com/):
```bash
gh pr create --repo github.com/ava-labs/subnet-evm --base master --title "chore: prep next release $P_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion plugin/evm/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var (
// GitCommit is set by the build script
GitCommit string
// Version is the version of Subnet EVM
Version string = "v0.7.9"
Version string = "v0.7.10"
)

func init() {
Expand Down