From 7435940891ecc1810b55c64b9af1dd00c8a97af9 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Thu, 25 Jul 2024 18:02:57 -0500 Subject: [PATCH] fix: handle other ape 0.8 changes --- .github/workflows/test_ape_version.yaml | 4 ++-- .github/workflows/test_plugins.yaml | 4 ++-- README.md | 4 ++-- ape-config.yaml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test_ape_version.yaml b/.github/workflows/test_ape_version.yaml index 89e17e8..4695b67 100644 --- a/.github/workflows/test_ape_version.yaml +++ b/.github/workflows/test_ape_version.yaml @@ -22,8 +22,8 @@ jobs: version: [ 'default', - '0.7.0', - '==0.7.0', + '0.8.0', + '==0.8.0', 'git+https://github.com/ApeWorX/ape.git@main', ] steps: diff --git a/.github/workflows/test_plugins.yaml b/.github/workflows/test_plugins.yaml index 2dba24a..d36197b 100644 --- a/.github/workflows/test_plugins.yaml +++ b/.github/workflows/test_plugins.yaml @@ -23,7 +23,7 @@ jobs: 'default_with_version_config', 'default_without_version_in_config', 'tokens', - 'tokens==0.7.0' + 'tokens==0.8.0' ] steps: - uses: actions/checkout@v4 @@ -37,7 +37,7 @@ jobs: if [[ "${{ matrix.plugins }}" == "default_without_version_in_config" ]]; then # Remove the version so it defaults to `. -U`. - sed -i 's/version: 0.7.0//g' "ape-config.yaml" + sed -i 's/version: 0.8.0//g' "ape-config.yaml" fi - name: Run ape action diff --git a/README.md b/README.md index 9398c71..90849a7 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,8 @@ steps: - uses: ApeWorX/github-action@v2 with: python-version: '3.10' # (optional) - ape-version-pin: '>=0.7.0' # (optional) - ape-plugins-list: 'solidity vyper==0.7.0' # (optional) + ape-version-pin: '>=0.8.0' # (optional) + ape-plugins-list: 'solidity vyper==0.8.0' # (optional) - run: ape test -s ``` diff --git a/ape-config.yaml b/ape-config.yaml index 41a6f2a..786b1d7 100644 --- a/ape-config.yaml +++ b/ape-config.yaml @@ -1,4 +1,4 @@ # This file exists only as a test for the action. plugins: - name: tokens - version: 0.7.0 + version: 0.8.0