Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit 0fa9b71

Browse files
qdm12ceyonur
andauthored
chore: release v0.7.3-rc.0 (#1537)
Co-authored-by: Ceyhun Onur <[email protected]>
1 parent 7d48dfa commit 0fa9b71

File tree

14 files changed

+264
-121
lines changed

14 files changed

+264
-121
lines changed

.envrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/tests.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ jobs:
3838
run: |
3939
go mod tidy
4040
git diff --exit-code
41-
- name: Ensure consistent avalanchego version
42-
shell: bash
43-
run: |
44-
bash -x ./scripts/update_avalanchego_version.sh
45-
git diff --exit-code
4641
4742
unit_test:
4843
name: Golang Unit Tests (${{ matrix.os }})
@@ -151,15 +146,18 @@ jobs:
151146
shell: bash
152147
run: ./scripts/build.sh
153148
- name: Run Warp E2E Tests
154-
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@50f1601bf39a106d066012b4ef470c1058f5005a
149+
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@v1.11.13
155150
with:
156-
run: ./scripts/run_ginkgo_warp.sh
157-
run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego
158-
artifact_prefix: warp
159-
prometheus_username: ${{ secrets.PROMETHEUS_ID || '' }}
151+
run: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/run_ginkgo_warp.sh
152+
prometheus_id: ${{ secrets.PROMETHEUS_ID || '' }}
160153
prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }}
161-
loki_username: ${{ secrets.LOKI_ID || '' }}
154+
loki_id: ${{ secrets.LOKI_ID || '' }}
162155
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
156+
- name: Upload tmpnet network dir for warp testing
157+
uses: ava-labs/avalanchego/.github/actions/upload-tmpnet-artifact@v1-actions
158+
if: always()
159+
with:
160+
name: warp-tmpnet-data
163161
e2e_load:
164162
name: e2e load tests
165163
runs-on: ubuntu-latest
@@ -179,15 +177,18 @@ jobs:
179177
shell: bash
180178
run: ./scripts/build.sh
181179
- name: Run E2E Load Tests
182-
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@50f1601bf39a106d066012b4ef470c1058f5005a
180+
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@v1.11.13
183181
with:
184-
run: ./scripts/run_ginkgo_load.sh
185-
run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego
186-
artifact_prefix: load
187-
prometheus_username: ${{ secrets.PROMETHEUS_ID || '' }}
182+
run: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/run_ginkgo_load.sh
183+
prometheus_id: ${{ secrets.PROMETHEUS_ID || '' }}
188184
prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }}
189-
loki_username: ${{ secrets.LOKI_ID || '' }}
185+
loki_id: ${{ secrets.LOKI_ID || '' }}
190186
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
187+
- name: Upload tmpnet network dir for load testing
188+
uses: ava-labs/avalanchego/.github/actions/upload-tmpnet-artifact@v1-actions
189+
if: always()
190+
with:
191+
name: load-tmpnet-data
191192
test_build_image:
192193
name: Image build
193194
runs-on: ubuntu-latest

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,3 @@ diffs/
5858

5959
# clone used for antithesis image builds
6060
avalanchego/
61-
62-
.direnv

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
2121
[v0.7.0] [email protected] (Protocol Version: 38)
2222
[v0.7.1] [email protected] (Protocol Version: 39)
2323
[v0.7.2] [email protected]/1.13.0-fuji (Protocol Version: 39)
24+
[v0.7.3] [email protected]/1.13.0 (Protocol Version: 39)
2425
```
2526

2627
## API
@@ -84,5 +85,5 @@ To run a local network, it is recommended to use the [avalanche-cli](https://git
8485

8586
There are two options when using the Avalanche-CLI:
8687

87-
1. Use an official Subnet-EVM release: https://docs.avax.network/subnets/build-first-subnet
88-
2. Build and deploy a locally built (and optionally modified) version of Subnet-EVM: https://docs.avax.network/subnets/create-custom-subnet
88+
1. Use an official Subnet-EVM release: <https://docs.avax.network/subnets/build-first-subnet>
89+
2. Build and deploy a locally built (and optionally modified) version of Subnet-EVM: <https://docs.avax.network/subnets/create-custom-subnet>

bin/tmpnetctl

Lines changed: 0 additions & 13 deletions
This file was deleted.

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.3": 39,
34
"v0.7.2": 39,
45
"v0.7.1": 39,
56
"v0.7.0": 38

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.6
55
require (
66
github.com/VictoriaMetrics/fastcache v1.12.1
77
github.com/antithesishq/antithesis-sdk-go v0.3.8
8-
github.com/ava-labs/avalanchego v1.12.3-0.20250321175346-50f1601bf39a
8+
github.com/ava-labs/avalanchego v1.13.0
99
github.com/cespare/cp v0.1.0
1010
github.com/crate-crypto/go-ipa v0.0.0-20231025140028-3c0104f4b233
1111
github.com/davecgh/go-spew v1.1.1
@@ -58,7 +58,7 @@ require (
5858
github.com/DataDog/zstd v1.5.2 // indirect
5959
github.com/NYTimes/gziphandler v1.1.1 // indirect
6060
github.com/StephenButtolph/canoto v0.15.0 // indirect
61-
github.com/ava-labs/coreth v0.15.0-rc.0.0.20250321001337-7fa47ba3fa18 // indirect
61+
github.com/ava-labs/coreth v0.15.0-rc.0 // indirect
6262
github.com/beorn7/perks v1.0.1 // indirect
6363
github.com/bits-and-blooms/bitset v1.10.0 // indirect
6464
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ github.com/antithesishq/antithesis-sdk-go v0.3.8/go.mod h1:IUpT2DPAKh6i/YhSbt6Gl
6262
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
6363
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
6464
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
65-
github.com/ava-labs/avalanchego v1.12.3-0.20250321175346-50f1601bf39a h1:KSpG4lheMcV3oWrJJQyDyzx+JqSzjJPZEpi7UkSvE8I=
66-
github.com/ava-labs/avalanchego v1.12.3-0.20250321175346-50f1601bf39a/go.mod h1:fpV/GmbfIB3P53gkq6zFpyeQtyAsJIuZCCKnm7TJ4sQ=
67-
github.com/ava-labs/coreth v0.15.0-rc.0.0.20250321001337-7fa47ba3fa18 h1:OKWMFJZEalp9Kdw0tsKVU6Ky0inxqW/Wt0qCWQIxkZc=
68-
github.com/ava-labs/coreth v0.15.0-rc.0.0.20250321001337-7fa47ba3fa18/go.mod h1:2DHfOrbTkZiTyWG5xyZW/4zGV0+hnk92Fsbpfk6AJeg=
65+
github.com/ava-labs/avalanchego v1.13.0 h1:bUWMWLShC0ACa5bQgZdBEJf5lMn1lJIvFrolj3iqTZk=
66+
github.com/ava-labs/avalanchego v1.13.0/go.mod h1:fpV/GmbfIB3P53gkq6zFpyeQtyAsJIuZCCKnm7TJ4sQ=
67+
github.com/ava-labs/coreth v0.15.0-rc.0 h1:wabaNbSXcqhhO6Qg/9fnrgDNCuP3StwB5sls45dHbiI=
68+
github.com/ava-labs/coreth v0.15.0-rc.0/go.mod h1:gIGr+5WDNX1DrFvUMy53AtTpkxlM/8cNOD/PDIChKfM=
6969
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=
7070
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
7171
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=

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.2"
14+
Version string = "v0.7.3"
1515
)
1616

1717
func init() {

scripts/dev_shell.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)