Skip to content

Commit

Permalink
Merge pull request #138 from kevinheavey/solana-2.2
Browse files Browse the repository at this point in the history
use solana 2.2 crates
  • Loading branch information
kevinheavey authored Feb 18, 2025
2 parents aed4be9 + 8899e43 commit 621bed1
Show file tree
Hide file tree
Showing 99 changed files with 2,181 additions and 1,860 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
pytest
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos_universal2
path: dist

windows:
Expand Down Expand Up @@ -96,9 +96,9 @@ jobs:
python -m pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
python -m pytest --ignore=tests/litesvm
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows
path: dist

linux-x86_64:
Expand Down Expand Up @@ -138,9 +138,9 @@ jobs:
pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
pytest
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-matrix-${{ matrix.target }}
path: dist

linux-i686:
Expand Down Expand Up @@ -176,9 +176,9 @@ jobs:
fi
fi
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-i686
path: dist

musllinux-x86_64:
Expand Down Expand Up @@ -213,9 +213,9 @@ jobs:
pip3 install ${{ env.name }} --find-links /io/dist/ --force-reinstall --no-index --no-dependencies --break-system-packages
python3 -m pytest --ignore=tests/litesvm
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-musllinux-x86_64
path: dist

musllinux-i686:
Expand All @@ -242,9 +242,9 @@ jobs:
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-musllinux-i686
path: dist

linux-aarch64:
Expand All @@ -268,9 +268,9 @@ jobs:
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-aarch64
path: dist

linux-armv7:
Expand All @@ -294,9 +294,9 @@ jobs:
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-armv7
path: dist

sdist:
Expand All @@ -313,7 +313,7 @@ jobs:
args: --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: dist
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ jobs:
release_pypi:
runs-on: ubuntu-latest
steps:
- uses: dawidd6/action-download-artifact@v2
- uses: dawidd6/action-download-artifact@v4
with:
workflow: build.yml
name: wheels
name: wheels-*
merge-multiple: true
- name: Publish to PyPi
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

# [0.25.0] -2025-01-27
# Unreleased

### Changed

- Upgrade to Solana 2.2 crates [(#137)](https://github.com/kevinheavey/solders/pull/137)
- Remove `from_json` methods in `solders.rpc.requests` [(#137)](https://github.com/kevinheavey/solders/pull/137)

# [0.25.0] - 2025-01-27

### Changed

Expand Down
Loading

0 comments on commit 621bed1

Please sign in to comment.